2
0
mirror of https://github.com/rehlds/metamod-r.git synced 2025-03-04 01:25:33 +03:00
metamod-r/metamod/src/sdk_util.h

17 lines
542 B
C
Raw Normal View History

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
// 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"
#include <util.h>
void UTIL_HudMessage(edict_t *pEntity, const hudtextparms_t &textparms, const char *pMessage);