diff options
Diffstat (limited to 'src/game/bg_public.h')
-rw-r--r-- | src/game/bg_public.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/bg_public.h b/src/game/bg_public.h index a4e6ea46..0f53ef30 100644 --- a/src/game/bg_public.h +++ b/src/game/bg_public.h @@ -484,7 +484,8 @@ typedef enum { EV_POWERUP_REGEN, EV_GIB_PLAYER, // gib a previously living player - EV_GIB_GENERIC, //TA: generic green gib for droids + EV_GIB_DROID, //TA: generic green gib for droids + EV_ITEM_RECEDE, //TA: sent when creep should recede EV_DEBUG_LINE, EV_STOPLOOPINGSOUND, @@ -781,4 +782,5 @@ qboolean BG_gotWeapon( int weapon, int stats[ ] );*/ //TA: conceptually should live in q_shared.h void AxisToAngles( vec3_t axis[3], vec3_t angles); float arccos( float x ); +#define Vector2Set(v, x, y) ((v)[0]=(x), (v)[1]=(y)) |