示例#1
0
文件: Game.java 项目: jgacitua/PacMan
 /**
  * Updates the state of Ms Pac-Man given the move returned by the controller.
  *
  * @param pacManMove The move supplied by the Ms Pac-Man controller
  */
 public void updatePacMan(MOVE pacManMove) {
   _updatePacMan(pacManMove); // move pac-man	
   _eatPill(); // eat a pill
   _eatPowerPill(); // eat a power pill
 }