You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.2 KiB
27 lines
1.2 KiB
/*** |
|
* |
|
* Copyright (c) 1996-2001, Valve LLC. All rights reserved. |
|
* |
|
* This product contains software technology licensed from Id |
|
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc. |
|
* All Rights Reserved. |
|
* |
|
* This source code contains proprietary and confidential information of |
|
* Valve LLC and its suppliers. Access to this code is restricted to |
|
* persons who have executed a written SDK license with Valve. Any access, |
|
* use or distribution of this code by or to any unlicensed person is illegal. |
|
* |
|
****/ |
|
|
|
#ifndef GEARBOX_UTILS_H |
|
#define GEARBOX_UTILS_H |
|
|
|
extern const char* UTIL_GetActivityNameBySequence(const int sequence); |
|
extern const char* UTIL_GetEntityActivityName(struct entvars_s* pev); |
|
extern const char* UTIL_GetEntityActivityName(struct edict_s* ent); |
|
extern const char* UTIL_GetEntityActivityName(CBaseEntity* pEntity); |
|
extern void UTIL_PrintActivity(struct entvars_s* pev, const ALERT_TYPE alert_type = at_console); |
|
extern void UTIL_PrintActivity(struct edict_s* ent, const ALERT_TYPE alert_type = at_console); |
|
extern void UTIL_PrintActivity(CBaseEntity* pEntity, const ALERT_TYPE alert_type = at_console); |
|
|
|
#endif // GEARBOX_UTILS_H
|