コード例 #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;
 }