mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-23 01:59:43 +08:00
Compat hacks for mods on old SDK Base.
This commit is contained in:
parent
37cd5ba0ae
commit
12d384f0de
@ -73,9 +73,14 @@ typedef struct player_info_s player_info_t;
|
|||||||
#define DLLEXPORT /* */
|
#define DLLEXPORT /* */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// AlliedModders - Shim until all supported mods are using the SDK Base that has this
|
||||||
|
#if 0
|
||||||
#define INTERFACEVERSION_VENGINESERVER_VERSION_21 "VEngineServer021"
|
#define INTERFACEVERSION_VENGINESERVER_VERSION_21 "VEngineServer021"
|
||||||
#define INTERFACEVERSION_VENGINESERVER "VEngineServer022"
|
#define INTERFACEVERSION_VENGINESERVER "VEngineServer022"
|
||||||
#define INTERFACEVERSION_VENGINESERVER_INT 22
|
#define INTERFACEVERSION_VENGINESERVER_INT 22
|
||||||
|
#else
|
||||||
|
#define INTERFACEVERSION_VENGINESERVER "VEngineServer021"
|
||||||
|
#endif
|
||||||
|
|
||||||
struct bbox_t
|
struct bbox_t
|
||||||
{
|
{
|
||||||
|
@ -245,10 +245,15 @@ public:
|
|||||||
typedef IServerTools IServerTools001;
|
typedef IServerTools IServerTools001;
|
||||||
typedef IServerTools IServerTools002;
|
typedef IServerTools IServerTools002;
|
||||||
|
|
||||||
|
// AlliedModders - Shim until all supported mods are using the SDK Base that has this
|
||||||
|
#if 0
|
||||||
#define VSERVERTOOLS_INTERFACE_VERSION_1 "VSERVERTOOLS001"
|
#define VSERVERTOOLS_INTERFACE_VERSION_1 "VSERVERTOOLS001"
|
||||||
#define VSERVERTOOLS_INTERFACE_VERSION_2 "VSERVERTOOLS002"
|
#define VSERVERTOOLS_INTERFACE_VERSION_2 "VSERVERTOOLS002"
|
||||||
#define VSERVERTOOLS_INTERFACE_VERSION "VSERVERTOOLS003"
|
#define VSERVERTOOLS_INTERFACE_VERSION "VSERVERTOOLS003"
|
||||||
#define VSERVERTOOLS_INTERFACE_VERSION_INT 3
|
#define VSERVERTOOLS_INTERFACE_VERSION_INT 3
|
||||||
|
#else
|
||||||
|
#define VSERVERTOOLS_INTERFACE_VERSION "VSERVERTOOLS002"
|
||||||
|
#endif
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Purpose: Client side tool interace (right now just handles IClientRenderables).
|
// Purpose: Client side tool interace (right now just handles IClientRenderables).
|
||||||
|
Loading…
Reference in New Issue
Block a user