1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 04:26:03 +08:00

Add ISource2ServerConfig interface

This commit is contained in:
xen
2023-09-28 20:50:13 +03:00
committed by Nicholas Hastings
parent 29e9027679
commit e76ee08f95
2 changed files with 6 additions and 0 deletions

View File

@ -102,6 +102,7 @@ IFlattenedSerializers *g_pFlattenedSerializers;
ISource2Client *g_pSource2Client; ISource2Client *g_pSource2Client;
ISource2ClientPrediction *g_pSource2ClientPrediction; ISource2ClientPrediction *g_pSource2ClientPrediction;
ISource2Server *g_pSource2Server; ISource2Server *g_pSource2Server;
ISource2ServerConfig *g_pSource2ServerConfig;
ISource2ServerSerializers *g_pSource2ServerSerializers; ISource2ServerSerializers *g_pSource2ServerSerializers;
ISource2Host *g_pSource2Host; ISource2Host *g_pSource2Host;
ISource2GameClients *g_pSource2GameClients; ISource2GameClients *g_pSource2GameClients;
@ -245,6 +246,7 @@ static const InterfaceGlobals_t g_pInterfaceGlobals[] =
{ SOURCE2CLIENT_INTERFACE_VERSION, &g_pSource2Client }, { SOURCE2CLIENT_INTERFACE_VERSION, &g_pSource2Client },
{ SOURCE2CLIENTPREDICTION_INTERFACE_VERSION, &g_pSource2ClientPrediction }, { SOURCE2CLIENTPREDICTION_INTERFACE_VERSION, &g_pSource2ClientPrediction },
{ SOURCE2SERVER_INTERFACE_VERSION, &g_pSource2Server }, { SOURCE2SERVER_INTERFACE_VERSION, &g_pSource2Server },
{ SOURCE2SERVERCONFIG_INTERFACE_VERSION, &g_pSource2ServerConfig },
{ SOURCE2SERVERSERIALIZERS_INTERFACE_VERSION, &g_pSource2ServerSerializers }, { SOURCE2SERVERSERIALIZERS_INTERFACE_VERSION, &g_pSource2ServerSerializers },
{ SOURCE2HOST_INTERFACE_VERSION, &g_pSource2Host }, { SOURCE2HOST_INTERFACE_VERSION, &g_pSource2Host },
{ SOURCE2GAMECLIENTS_INTERFACE_VERSION, &g_pSource2GameClients }, { SOURCE2GAMECLIENTS_INTERFACE_VERSION, &g_pSource2GameClients },

View File

@ -224,6 +224,7 @@ class IFlattenedSerializers;
class ISource2Client; class ISource2Client;
class ISource2ClientPrediction; class ISource2ClientPrediction;
class ISource2Server; class ISource2Server;
class ISource2ServerConfig;
class ISource2ServerSerializers; class ISource2ServerSerializers;
class ISource2Host; class ISource2Host;
class ISource2GameClients; class ISource2GameClients;
@ -515,6 +516,9 @@ DECLARE_TIER3_INTERFACE( ISource2ClientPrediction, g_pSource2ClientPrediction );
#define SOURCE2SERVER_INTERFACE_VERSION "Source2Server001" #define SOURCE2SERVER_INTERFACE_VERSION "Source2Server001"
DECLARE_TIER3_INTERFACE( ISource2Server, g_pSource2Server ); DECLARE_TIER3_INTERFACE( ISource2Server, g_pSource2Server );
#define SOURCE2SERVERCONFIG_INTERFACE_VERSION "Source2ServerConfig001"
DECLARE_TIER3_INTERFACE( ISource2ServerConfig, g_pSource2ServerConfig );
#define SOURCE2SERVERSERIALIZERS_INTERFACE_VERSION "Source2ServerSerializers001" #define SOURCE2SERVERSERIALIZERS_INTERFACE_VERSION "Source2ServerSerializers001"
DECLARE_TIER3_INTERFACE( ISource2ServerSerializers, g_pSource2ServerSerializers ); DECLARE_TIER3_INTERFACE( ISource2ServerSerializers, g_pSource2ServerSerializers );