GameHandler.GameHandler C# (CSharp) Метод

GameHandler() приватный Метод

private GameHandler ( ) : System.Collections
Результат System.Collections
    private GameHandler()
    {
        if(instance != null)
        {
            Debug.Log("There is already an instance of GameHandler!");
            return;
        }
        instance = this;
        this.Init();
    }
GameHandler