1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 12:36:05 +08:00

Updated IVEngineServer.

This commit is contained in:
Nicholas Hastings
2012-08-23 07:27:04 -04:00
parent 5657025080
commit f559a42b60

View File

@ -387,6 +387,13 @@ public:
// Send a client command keyvalues // Send a client command keyvalues
// keyvalues are deleted inside the function // keyvalues are deleted inside the function
virtual void ClientCommandKeyValues( edict_t *pEdict, KeyValues *pCommand ) = 0; virtual void ClientCommandKeyValues( edict_t *pEdict, KeyValues *pCommand ) = 0;
virtual const CSteamID *GetClientSteamIDByPlayerIndex( int index ) = 0;
virtual int GetClusterCount() = 0;
virtual int GetAllClusterBounds( bbox_t *pBoxes, int maxboxes ) = ;
virtual edict_t *CreateFakeClientEx( const char *netname, bool bUnknown ) = 0;
virtual int GetServerVersion() const = 0;
virtual void *GetReplay() = 0;
}; };
#define INTERFACEVERSION_SERVERGAMEDLL_VERSION_4 "ServerGameDLL004" #define INTERFACEVERSION_SERVERGAMEDLL_VERSION_4 "ServerGameDLL004"