Example #1
0
        private void SetStartGameText()
        {
            var content = "START";

            if (GameStatistics.ReturnMostRecentUnlockedLevel() >= 1)
            {
                content = "CONTINUE";
            }
            startGame.GetComponent <TMP_Text>().text = content;
        }