Exemplo n.º 1
0
 public Rendering(TbdGame game) : base(game)
 {
     game.Components.Add(this);
     _sprites = new CompositeGameData <Sprite>(
         game.State.Dummies.View(Dummy.ToSprite)
         );
 }
Exemplo n.º 2
0
 public Input(TbdGame game) : base(game)
 {
     game.Components.Add(this);
     _gamePads = new InputStates <GamePadState> [4];
 }