Пример #1
0
        public Level(XDocument levelData, MizJam1Game game)
        {
            this.game      = game;
            this.levelData = levelData;

            animationQueue = new AnimationQueue();
        }
Пример #2
0
 public ExitGameCommand(MizJam1Game game)
 {
     this.game = game;
 }
Пример #3
0
 public StartGameCommand(MizJam1Game game)
 {
     this.game = game;
 }
Пример #4
0
 public OpenOptionsCommand(MizJam1Game game)
 {
     this.game = game;
 }
Пример #5
0
 public ResetCommand(MizJam1Game game)
 {
     this.game = game;
 }
Пример #6
0
 public RestartLevelCommand(MizJam1Game game)
 {
     this.game = game;
 }