mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-07-18 17:38:16 +08:00
Update interfaces lib/a
This commit is contained in:
@ -88,6 +88,7 @@ IPrediction2 *g_pClientSidePrediction;
|
||||
ISource2Server *g_pSource2Server;
|
||||
ISource2ServerConfig *g_pSource2ServerConfig;
|
||||
ISource2Host *g_pSource2Host;
|
||||
ISource2ModTools *g_pSource2ModTools;
|
||||
ISource2GameClients *g_pSource2GameClients;
|
||||
ISource2GameEntities *g_pSource2GameEntities;
|
||||
IEngineServiceMgr *g_pEngineServiceMgr;
|
||||
@ -215,6 +216,7 @@ static const InterfaceGlobals_t g_pInterfaceGlobals[] =
|
||||
{ SOURCE2CLIENTPREDICTION_INTERFACE_VERSION, &g_pClientSidePrediction },
|
||||
{ SOURCE2SERVER_INTERFACE_VERSION, &g_pSource2Server },
|
||||
{ SOURCE2HOST_INTERFACE_VERSION, &g_pSource2Host },
|
||||
{ SOURCE2MODTOOLS_INTERFACE_VERSION, &g_pSource2ModTools },
|
||||
{ SOURCE2GAMECLIENTS_INTERFACE_VERSION, &g_pSource2GameClients },
|
||||
{ SOURCE2GAMEENTITIES_INTERFACE_VERSION, &g_pSource2GameEntities },
|
||||
{ ENGINESERVICEMGR_INTERFACE_VERSION, &g_pEngineServiceMgr },
|
||||
|
Binary file not shown.
Binary file not shown.
@ -222,6 +222,7 @@ class IPrediction2;
|
||||
class ISource2Server;
|
||||
class ISource2ServerConfig;
|
||||
class ISource2Host;
|
||||
class ISource2ModTools;
|
||||
class ISource2GameClients;
|
||||
class ISource2GameEntities;
|
||||
class IEngineServiceMgr;
|
||||
@ -495,6 +496,9 @@ DECLARE_TIER3_INTERFACE( ISource2ServerConfig, g_pSource2ServerConfig );
|
||||
#define SOURCE2HOST_INTERFACE_VERSION "Source2Host001"
|
||||
DECLARE_TIER3_INTERFACE( ISource2Host, g_pSource2Host );
|
||||
|
||||
#define SOURCE2MODTOOLS_INTERFACE_VERSION "Source2ModTools001"
|
||||
DECLARE_TIER3_INTERFACE( ISource2ModTools, g_pSource2ModTools );
|
||||
|
||||
#define SOURCE2GAMECLIENTS_INTERFACE_VERSION "Source2GameClients001"
|
||||
DECLARE_TIER3_INTERFACE( ISource2GameClients, g_pSource2GameClients );
|
||||
|
||||
|
Reference in New Issue
Block a user