GameHandler.GetVariable C# (CSharp) Method

GetVariable() public static method

public static GetVariable ( string key ) : string
key string
return string
    public static string GetVariable(string key)
    {
        return GameHandler.Instance().variables[key] as string;
    }
GameHandler