Exemplo n.º 1
0
 public HighscoreView(GameView parent, Minestory game) : base(parent, game)
 {
     this.game = game;
     // Init(); // called automatically after added to a manager
 }
Exemplo n.º 2
0
 public GameView(GameView parent)
     : this(parent, parent.Game)
 {
 }
Exemplo n.º 3
0
 public MapView(GameView parent, GameMap map, Minestory game)
     : this(parent, map, game.GraphicsDevice.Viewport.Width,
            game.GraphicsDevice.Viewport.Height, game)
 {
 }