예제 #1
0
파일: Game.cs 프로젝트: kingpipe/Pacman
 public void Stop()
 {
     if (_status == GameStatus.InProcess)
     {
         _status = GameStatus.Stop;
         _pacman.Stop();
         _ghosts.Stop();
         UpdateMap();
     }
 }