예제 #1
0
 // Methods
 public DrawableGameComponent(Game2DBase game)
     : base(game)
 {
     this.Visible = true;
     RenderTarget2D = Game.RenderTarget2D;
 }
예제 #2
0
 public Screen (Game2DBase game):base(game)
 {
     this.Screen = this;
 }
예제 #3
0
        public ComponentContainer(Game2DBase game)
            : base(game)
        {

        }
예제 #4
0
 public ScreenManager(Game2DBase game) : base(game) 
 { 
 }
예제 #5
0
 public GameScreen(Game2DBase game)
     : base(game)
 {
 }
예제 #6
0
 public GameComponent(Game2DBase game)
 {
     this.enabled = true;
     this.Game = game;
 }