Exemplo n.º 1
0
        GameLevel(Game Game)
        {
            gameBounds = Game.Window.ClientBounds;

            board = new Board(Game.Content, gameBounds);
            player = new Player(Game.Content);
            font = Game.Content.Load<SpriteFont>("LevelAuthor");

            board.AddPlayer(player);
        }
Exemplo n.º 2
0
 public void AddPlayer(Player Player)
 {
     AddObstacle(Player, new Point(1, 2));
 }