StartGame() 공개 메소드

public StartGame ( ) : void
리턴 void
예제 #1
0
 void Update()
 {
     if (Input.GetKeyDown(KeyCode.Space) && GameManager.Instance.CurrentGameState == GameManager.GameState.PREGAME && !_startMenu.OnFadeProcessing)
     {
         _startMenu.StartGame();
     }
 }
예제 #2
0
 public void FallingEnd()
 {
     Level.StartGame();
 }