Fix coordinates
This commit is contained in:
parent
10e815a02c
commit
38dc87c95a
1 changed files with 9 additions and 0 deletions
|
@ -353,6 +353,7 @@ public class NativeLibrary {
|
|||
private QuadRect bbox = new QuadRect();
|
||||
private TIntArrayList x = new TIntArrayList();
|
||||
private TIntArrayList y = new TIntArrayList();
|
||||
private String iconRes;
|
||||
|
||||
public Map<String, String> getTags() {
|
||||
return tags;
|
||||
|
@ -371,6 +372,14 @@ public class NativeLibrary {
|
|||
return x;
|
||||
}
|
||||
|
||||
public String getIconRes() {
|
||||
return iconRes;
|
||||
}
|
||||
|
||||
public void setIconRes(String iconRes) {
|
||||
this.iconRes = iconRes;
|
||||
}
|
||||
|
||||
public TIntArrayList getY() {
|
||||
return y;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue