Moved gameconf code from core to logic (bug 4406 part 11, r=ds).

--HG--
rename : core/GameConfigs.cpp => core/logic/GameConfigs.cpp
rename : core/GameConfigs.h => core/logic/GameConfigs.h
rename : core/smn_gameconfigs.cpp => core/logic/smn_gameconfigs.cpp
This commit is contained in:
David Anderson
2010-05-14 23:35:42 -07:00
parent 96f6cdf677
commit 64455b9852
25 changed files with 254 additions and 204 deletions
+9 -1
View File
@@ -40,7 +40,7 @@
*/
#define SMINTERFACE_GAMEHELPERS_NAME "IGameHelpers"
#define SMINTERFACE_GAMEHELPERS_VERSION 5
#define SMINTERFACE_GAMEHELPERS_VERSION 6
class CBaseEntity;
class CBaseHandle;
@@ -262,6 +262,14 @@ namespace SourceMod
* @param msg The kick message to show to the player.
*/
virtual void AddDelayedKick(int client, int userid, const char *msg) =0;
/**
* @brief Returns the uncomputed offset of a SendProp.
*
* @param prop SendProp pointer.
* @return Uncomputed sendprop offset.
*/
virtual int GetSendPropOffset(SendProp *prop) =0;
};
}