CvarFlags
Namespace: QuakeReloaded.Interfaces
Specifies the property flags of a cvar
public enum CvarFlags
Inheritance Object → ValueType → Enum → CvarFlags
Implements IComparable, IFormattable, IConvertible
Fields
Name | Value | Description |
---|---|---|
None | 0 | No flags |
Boolean | 1 | The cvar type is boolean. It can only be 0 or 1. |
Integer | 2 | The cvar type is integer. It’ll only allow integer values. |
Float | 4 | The cvar type is float. |
String | 8 | The cvar type is string. |
Saved | 16 | The cvar will be saved in the user config |
Constant | 32768 | The cvar is a constant value and cannot be changed |