static void Postfix(ref SoloFreePlayFlowCoordinator __instance, LevelCompletionResults levelCompletionResults)
 {
     // Show end of song UI
     if (levelCompletionResults.levelEndAction == LevelCompletionResults.LevelEndAction.None)
     {
         EndOfLevelUICreator.Show(__instance);
     }
 }
 static void Postfix(ref ResultsViewController __instance)
 {
     // Create or refresh end of song UI
     EndOfLevelUICreator.Create();
 }