GameHandler.FreezeTime C# (CSharp) Method

FreezeTime() public static method

public static FreezeTime ( bool b ) : void
b bool
return void
    public static void FreezeTime(bool b)
    {
        if(b) GameHandler.Instance().freezeCount++;
        else GameHandler.Instance().freezeCount--;
    }
GameHandler