예제 #1
0
파일: GameHandler.cs 프로젝트: RHF01369/DS
    public void StartSingleBattle()
    {
        Preparation.Initialize(GameMode.Single);
        Preparation.InitEnemy();

        UI.OnBattle();
        // 3 2 1...
        Battle.StartBattle(GameMode.Single);
    }
예제 #2
0
파일: GameHandler.cs 프로젝트: RHF01369/DS
 public void StartChallengeBattle()
 {
     Preparation.Initialize(GameMode.Challenge);
 }