示例#1
0
 public DrawableGameComponent(DrawableScreen game) : base(game)
 {
     SetVisible(true);
 }
		public DrawableGameComponent(DrawableScreen game):base(game){
			
			SetVisible(true);
		}
示例#3
0
 public GameComponent(DrawableScreen game)
 {
     _game = game;
     SetEnabled(true);
 }