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
asmodai ccea6516cb Finished rewriting of mreg code
Debug macro replaced to inline function
2017-01-09 01:30:23 +03:00

17 lines
542 B
C

#pragma once
// 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
#endif
// Inlcude local enginecallbacks wrapper *first* so that the g_engfuncs
// type is correct and the <enginecallback.h> header protection is already
// defined.
#include "enginecallbacks.h"
#include <util.h>
void UTIL_HudMessage(edict_t *pEntity, const hudtextparms_t &textparms, const char *pMessage);