示例#1
0
 public static bool Prefix(MainMenuLoadButton __instance)
 {
     if (!__instance.IsEmpty())
     {
         DeathRunUtils.HideHighScores(true);
     }
     return(true);
 }
示例#2
0
 public static bool Prefix(bool show)
 {
     if (show)
     {
         DeathRunUtils.ShowHighScores(true);
     }
     else
     {
         DeathRunUtils.HideHighScores(true);
     }
     return(true);
 }
示例#3
0
 public static bool Prefix()
 {
     DeathRunUtils.HideHighScores(true);
     DeathRun.StartNewGame();
     return(true);
 }