コード例 #1
0
    public static void AddHighscore(Highscore highscore)
    {
        HighscoreWrapper highscores = ReadHighScores();

        highscores.Highscores.Add(highscore);
        SetHighScores(highscores);
    }
コード例 #2
0
    public static void SetHighScores(HighscoreWrapper highscores)
    {
        string json = JsonUtility.ToJson(highscores, true);

        File.WriteAllText(HighscoreFile, json, Encoding.UTF8);
    }