예제 #1
0
파일: Game1.cs 프로젝트: jxl31/TankyIreland
        public void ViewScore()
        {
            scoreScreen = new ScoreScreen(this);
            gameState = GAMESTATE.SCORE;

            congratsScreen = null;
        }
예제 #2
0
파일: Game1.cs 프로젝트: jxl31/TankyIreland
        public void Congrats()
        {
            congratsScreen = new CongratsScreen(this);
            gameState = GAMESTATE.FINISH;

            level1 = null;
            level2 = null;
            level3 = null;
        }