diff options
author | enneract <trem.redman@gmail.com> | 2014-12-19 20:38:46 +0100 |
---|---|---|
committer | enneract <trem.redman@gmail.com> | 2014-12-19 20:38:46 +0100 |
commit | 3a7015bd646110a378c3b5f0a8638368f2827788 (patch) | |
tree | 07cb29caa192f462664b5881b9cbaf7f7502a5a0 /src/game/bg_public.h | |
parent | 3afe13c2a292e0940a05634b322300ccd1238541 (diff) |
Implement combat statistics.
Diffstat (limited to 'src/game/bg_public.h')
-rw-r--r-- | src/game/bg_public.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/bg_public.h b/src/game/bg_public.h index bbf064e..f96fd66 100644 --- a/src/game/bg_public.h +++ b/src/game/bg_public.h @@ -833,7 +833,7 @@ typedef enum // means of death typedef enum { -#define MOD(x) x +#define MOD(a,b) a #include "bg_mod.h" #undef MOD } meansOfDeath_t; @@ -1243,3 +1243,4 @@ typedef struct const char *name; } dummyCmd_t; int cmdcmp( const void *a, const void *b ); + |