Ejemplo n.º 1
0
 protected override void Initialize()
 {
     _menu           = new MenuMain(this, graphics, "menu/background");
     _menu.RunGame  += this.GameLaunchReady;
     _menu.QuitGame += this.GameQuitRequest;
     _menu.Initialize();
     _level = new Level(this, graphics);
     _level.levelIsFinish += this.LevelFinish;
     base.Initialize();
 }