mirror of
https://github.com/celisej567/source-sdk-2013.git
synced 2026-09-23 20:09:45 +03:00
Mapbase VScript server/client expansions
This commit is contained in:
@@ -50,6 +50,23 @@ public:
|
||||
bool ScriptIsKeyValueEmpty( const char *pszName );
|
||||
bool ScriptGetKeyValueBool( const char *pszName );
|
||||
void ScriptReleaseKeyValues( );
|
||||
#ifdef MAPBASE_VSCRIPT
|
||||
const char *ScriptGetName();
|
||||
int ScriptGetInt();
|
||||
float ScriptGetFloat();
|
||||
const char *ScriptGetString();
|
||||
bool ScriptGetBool();
|
||||
|
||||
void ScriptSetKeyValueInt( const char *pszName, int iValue );
|
||||
void ScriptSetKeyValueFloat( const char *pszName, float flValue );
|
||||
void ScriptSetKeyValueString( const char *pszName, const char *pszValue );
|
||||
void ScriptSetKeyValueBool( const char *pszName, bool bValue );
|
||||
void ScriptSetName( const char *pszValue );
|
||||
void ScriptSetInt( int iValue );
|
||||
void ScriptSetFloat( float flValue );
|
||||
void ScriptSetString( const char *pszValue );
|
||||
void ScriptSetBool( bool bValue );
|
||||
#endif
|
||||
|
||||
KeyValues *m_pKeyValues; // actual KeyValue entity
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user