2016-07-26 23:31:47 +07:00
|
|
|
#pragma once
|
2016-07-04 12:07:29 +06:00
|
|
|
|
|
|
|
// We're not including the DBG_EntOfVars and DBG_AssertFunction routines
|
|
|
|
// mentioned in the SDK util.h, so we're going to unset DEBUG here so that
|
|
|
|
// we don't get "unresolved symbol" errors.
|
|
|
|
#ifdef DEBUG
|
|
|
|
#undef DEBUG
|
2016-07-26 23:31:47 +07:00
|
|
|
#endif
|
2016-07-04 12:07:29 +06:00
|
|
|
|
2016-07-26 15:18:32 +03:00
|
|
|
// Inlcude local enginecallbacks wrapper *first* so that the g_engfuncs
|
|
|
|
// type is correct and the <enginecallback.h> header protection is already
|
|
|
|
// defined.
|
2016-07-04 12:07:29 +06:00
|
|
|
#include "enginecallbacks.h"
|
2016-07-26 15:18:32 +03:00
|
|
|
#include <util.h>
|
2017-01-09 01:30:23 +03:00
|
|
|
|
|
|
|
void UTIL_HudMessage(edict_t *pEntity, const hudtextparms_t &textparms, const char *pMessage);
|