GameHandler.GameHandler C# (CSharp) Méthode

GameHandler() private méthode

private GameHandler ( ) : System.Collections
Résultat System.Collections
    private GameHandler()
    {
        if(instance != null)
        {
            Debug.Log("There is already an instance of GameHandler!");
            return;
        }
        instance = this;
        this.Init();
    }
GameHandler