示例#1
0
 public boolean isTouched() {
   return currentIcon.equals(selectedIcon);
 }
示例#2
0
 public float getIconHeight() {
   return currentIcon.getHeight();
 }
示例#3
0
 public void draw(float x, float y, float width, float height) {
   currentIcon.draw(x, y, width, height);
 }
示例#4
0
 public float getIconWidth() {
   return currentIcon.getWidth();
 }
示例#5
0
 public void draw(float x, float y) {
   currentIcon.draw(x, y);
 }