public static GamePointManager getInstance()
 {
     if (instance == null)
     {
         instance = new GamePointManager();
     }
     return(instance);
 }
Esempio n. 2
0
    void Start()
    {
        gameSceneController = GameSceneController.getInstance();
        gameSceneController.setGameStatus(this);

        gameState = GameState.Running;

        gamePointManager = GamePointManager.getInstance();
    }