public static void EvoBlockBuildEvent(Button button)
 {
     if (button.Active)
     {
         Game.input.constructionState = button.ButtonArgs1;
     }
 }
Example #2
0
 // Delegate for Quit Button Press
 public void OnQuitButton(Button button)
 {
     Game.game.screenManager.TransitionScreen("Intro");
 }
Example #3
0
 public void Play(Button button)
 {
     if (duration > 0.25)
         Game.game.screenManager.TransitionScreen("Game");
 }
Example #4
0
 public void Online(Button button)
 {
     if (duration > 0.25)
         Game.game.screenManager.TransitionScreen("Multiplayer");
 }
Example #5
0
 public void Exit(Button button)
 {
     if (duration > 0.25)
         Game.game.Exit();
 }