GameHandler.Instance C# (CSharp) Méthode

Instance() public static méthode

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