Rearrange order of methods in methodmap. Add missing Reset method to methodmap.
This commit is contained in:
parent
cdc2b11a09
commit
286d484207
@ -29,7 +29,7 @@
|
|||||||
*
|
*
|
||||||
* Version: $Id$
|
* Version: $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined _console_included
|
#if defined _console_included
|
||||||
#endinput
|
#endinput
|
||||||
#endif
|
#endif
|
||||||
@ -970,6 +970,7 @@ forward Action:OnClientSayCommand(client, const String:command[], const String:s
|
|||||||
*/
|
*/
|
||||||
forward void OnClientSayCommand_Post(int client, const char[] command, const char[] sArgs);
|
forward void OnClientSayCommand_Post(int client, const char[] command, const char[] sArgs);
|
||||||
|
|
||||||
|
// Most of these aren't properties because they're more complex
|
||||||
methodmap ConVar < Handle
|
methodmap ConVar < Handle
|
||||||
{
|
{
|
||||||
public ConVar() = CreateConVar;
|
public ConVar() = CreateConVar;
|
||||||
@ -977,15 +978,15 @@ methodmap ConVar < Handle
|
|||||||
public SetBool() = SetConVarBool;
|
public SetBool() = SetConVarBool;
|
||||||
public GetInt() = GetConVarInt;
|
public GetInt() = GetConVarInt;
|
||||||
public SetInt() = SetConVarInt;
|
public SetInt() = SetConVarInt;
|
||||||
public GetString() = GetConVarString;
|
|
||||||
public SetString() = SetConVarString;
|
|
||||||
public GetFloat() = GetConVarFloat;
|
public GetFloat() = GetConVarFloat;
|
||||||
public SetFloat() = SetConVarFloat;
|
public SetFloat() = SetConVarFloat;
|
||||||
|
public GetString() = GetConVarString;
|
||||||
|
public SetString() = SetConVarString;
|
||||||
|
public Reset() = ResetConVar;
|
||||||
public GetFlags() = GetConVarFlags;
|
public GetFlags() = GetConVarFlags;
|
||||||
public SetFlags() = SetConVarFlags;
|
public SetFlags() = SetConVarFlags;
|
||||||
public GetBounds() = GetConVarBounds;
|
public GetBounds() = GetConVarBounds;
|
||||||
public SetBounds() = SetConVarBounds;
|
public SetBounds() = SetConVarBounds;
|
||||||
public GetDefault() = GetConVarDefault;
|
public GetDefault() = GetConVarDefault;
|
||||||
public GetName() = GetConVarName;
|
public GetName() = GetConVarName;
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user