예제 #1
0
    public void SubmitHighScore()
    {
        KeyValuePair <string, int> highScoreKVP = new KeyValuePair <string, int>(highScoreInput.text, steps);

        highScoreController.SaveNewScore(highScoreKVP);
        SceneManager.LoadScene("Main");
    }