//@author Fernando Hideki Mohara //UNICAMP-FT - Faculdade de Tecnologia //RA 091183 // Project 1 - Maze package f091183.mohara.jogl.maze; public class MoveControl { // Initial player position private double playerX=-0.9; private double playerY=0.8; // Return the playerX public double getPlayerX() { return playerX; } // Set playerX public void setPlayerX(double playerX) { this.playerX = playerX; } // Return the playerY public double getPlayerY() { return playerY; } // Set playerY public void setPlayerY(double playerY) { this.playerY = playerY; } }