コード例 #1
0
ファイル: ScoreManager.cs プロジェクト: acoto87/CircleCatch
    public static void SaveMaxScore()
    {
        if (score > maxScore)
        {
            PlayerPrefs.SetInt("MaxScore", score);
            maxScore = score;

            StartController.PostScore();
        }
    }