]> matita.cs.unibo.it Git - logicplayer.git/blob - mainActivity/app/src/main/java/com/example/furt/myapplication/Tree.java
Ported to latest version of Android SDK
[logicplayer.git] / mainActivity / app / src / main / java / com / example / furt / myapplication / Tree.java
1 package com.example.furt.myapplication;
2
3 public interface Tree
4 {
5         float getBaseWidth();
6         float getMaxWidth();
7         float getLineWidth();
8         float getUpLine();
9         float getLeftOffset() ;
10         float getRightOffset();
11         void Draw();
12 }