Exemplo n.º 1
0
        public Level(XDocument levelData, MizJam1Game game)
        {
            this.game      = game;
            this.levelData = levelData;

            animationQueue = new AnimationQueue();
        }
Exemplo n.º 2
0
 public ExitGameCommand(MizJam1Game game)
 {
     this.game = game;
 }
Exemplo n.º 3
0
 public StartGameCommand(MizJam1Game game)
 {
     this.game = game;
 }
Exemplo n.º 4
0
 public OpenOptionsCommand(MizJam1Game game)
 {
     this.game = game;
 }
Exemplo n.º 5
0
 public ResetCommand(MizJam1Game game)
 {
     this.game = game;
 }
Exemplo n.º 6
0
 public RestartLevelCommand(MizJam1Game game)
 {
     this.game = game;
 }