Exemplo n.º 1
0
 /**
  * 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));
 }
Exemplo n.º 2
0
 /**
  * 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));
 }