internal static void SaveScore(string name, int score)
 {
     var statistics = new StatisticsClient();
     statistics.SaveHighscoreAsync(name, score);
 }