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