/** * Sets the value of the variable with forcing. */ public static cvar_t ForceSet(string var_name, string value) { return(Cvar.Set2(var_name, value, true)); }
/** * Sets the value of the variable without forcing. */ public static cvar_t Set(string var_name, string value) { return(Cvar.Set2(var_name, value, false)); }