예제 #1
0
파일: Sprite.java 프로젝트: nsalminen/maze
 /** @return the y position of the Sprite */
 public int getY() {
   int yPos = position.y * panel.getBlockSize();
   return yPos;
 }
예제 #2
0
파일: Sprite.java 프로젝트: nsalminen/maze
 /** @return the x position of the Sprite */
 public int getX() {
   int xPos = position.x * panel.getBlockSize();
   return xPos;
 }