ACR_BuilderPlugin.Helpers.VariableHelper.GetBoolean C# (CSharp) Method

GetBoolean() public static method

public static GetBoolean ( NWN2ScriptVarTable variables, string name ) : bool
variables NWN2ScriptVarTable
name string
return bool
        public static bool GetBoolean(NWN2ScriptVarTable variables, string name)
        {
            return GetInteger(variables, name) != 0;
        }