diff --git a/public/IGameHelpers.h b/public/IGameHelpers.h index a6510c44..fedafdee 100644 --- a/public/IGameHelpers.h +++ b/public/IGameHelpers.h @@ -40,7 +40,7 @@ */ #define SMINTERFACE_GAMEHELPERS_NAME "IGameHelpers" -#define SMINTERFACE_GAMEHELPERS_VERSION 6 +#define SMINTERFACE_GAMEHELPERS_VERSION 7 class CBaseEntity; class CBaseHandle; @@ -269,7 +269,16 @@ namespace SourceMod * @param prop SendProp pointer. * @return Uncomputed sendprop offset. */ - virtual int GetSendPropOffset(SendProp *prop) =0; + virtual int GetSendPropOffset(SendProp *prop) =0; + + /** + * @brief Sends a hint message to a client. + * + * @param client Client index. + * @param msg Message to send. + * @return True on success, false on failure. + */ + virtual bool HintTextMsg(int client, const char *msg) =0; }; }