public static void Wish(Match match = null)
 {
     try
     {
         var GameStatsMenu = new QudUX_GameStatsScreen();
         GameStatsMenu.Show(null);
     }
     catch (Exception ex)
     {
         Utilities.Logger.Log($"(Error) Encountered an exception while showing the Game Stats menu [{ex}]");
     }
 }
        public static void ShowGameStatsScreen()
        {
            var GameStatsMenu = new QudUX_GameStatsScreen();

            GameStatsMenu.Show(null);
        }