예제 #1
0
파일: Game.cs 프로젝트: lancelotx999/pacman
 public Game(String name)
 {
     GamePlayer = new Player (name);
     GameBoard = new Board ();
     GamePacman = new PacmanCharacter (GameBoard, GamePlayer, this);
     GameRandomGhost = new GhostCharacter (GameBoard, GamePlayer,this,GamePacman);
     GameTrackingGhost = new GhostCharacter (GameBoard, GamePlayer,this,GamePacman);
     GameOver = false;
 }
예제 #2
0
        public GhostCharacter(Board Gameboard, Player GamePlayer, Game CurrentGame, PacmanCharacter Pacman)
        {
            Speed = 1;
            Direction = 0;
            State = 0;
            Board = Gameboard;

            this.Game = CurrentGame;
            Player = GamePlayer;
            PlayerPacman = Pacman;

            //starting position
            this.Position.X = 13;
            this.Position.Y = 14;
        }