Exemplo n.º 1
0
 public BattleSystem(Game game, Player player)
     : base(game)
 {
     HPBar = new StatBar();
     EnemyHP = new StatBar();
     this.player = player;
 }
Exemplo n.º 2
0
 public StaticGraphics(Game game, Player player)
     : base(game)
 {
     this.player = player;
     this.HPBar = new StatBar();
 }
Exemplo n.º 3
0
 public PlayerManager(Game game)
     : base(game)
 {
     player = new Player();
 }
Exemplo n.º 4
0
 public TileEngine(Game game, Player Player, IList<Map> maps, KeyboardState keyboardState, GamePadState gamePadState)
     : base(game)
 {
     this.Player = Player;
     this.maps = maps;
 }