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

SetBoolean() public static method

public static SetBoolean ( NWN2ScriptVarTable variables, string name, bool value ) : void
variables NWN2ScriptVarTable
name string
value bool
return void
        public static void SetBoolean(NWN2ScriptVarTable variables, string name, bool value)
        {
            SetInteger(variables, name, Convert.ToInt32(value));
        }
        #endregion