ACR_BuilderPlugin.Helpers.VariableHelper.GetBoolean C# (CSharp) Méthode

GetBoolean() public static méthode

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