Added TextMsg destination constants to IGameHelpers header (bug 5123, r=fyren).

This commit is contained in:
Nicholas Hastings 2011-10-13 13:17:22 -04:00
parent 92773c2e1b
commit e23d7ca51b

View File

@ -50,6 +50,11 @@ struct edict_t;
struct datamap_t; struct datamap_t;
struct typedescription_t; struct typedescription_t;
#define TEXTMSG_DEST_NOTIFY 1
#define TEXTMSG_DEST_CONSOLE 2
#define TEXTMSG_DEST_CHAT 3
#define TEXTMSG_DEST_CENTER 4
namespace SourceMod namespace SourceMod
{ {
/** /**
@ -119,7 +124,7 @@ namespace SourceMod
* @brief Sends a text message to a client. * @brief Sends a text message to a client.
* *
* @param client Client index. * @param client Client index.
* @param dest Destination on the HUD. * @param dest Destination on the HUD (see TEXTMSG_DEST defines above).
* @param msg Message to send. * @param msg Message to send.
* @return True on success, false on failure. * @return True on success, false on failure.
*/ */