Наследование: Microsoft.Xna.Framework.Game
Пример #1
0
 public void SetParentGame(MainGame pgame, int index)
 {
     game = pgame;
     Index = index;
 }
Пример #2
0
 public ScreenList(MainGame game, int startScreen, params IGameScreen[] screens)
     : this(game)
 {
     setStartScreen(startScreen);
     addScreens(screens);
 }
Пример #3
0
 public void SetParentGame(MainGame pgame, int index)
 {
     game  = pgame;
     Index = index;
 }
Пример #4
0
 public ScreenList(MainGame game)
 {
     this.game = game;
     current = NoStartSelected;
 }