GameHandler.Instance C# (CSharp) Method

Instance() public static method

public static Instance ( ) : GameHandler
return GameHandler
    public static GameHandler Instance()
    {
        if(instance == null)
        {
            new GameHandler();
        }
        return instance;
    }
GameHandler