diff options
author | Tim Angus <tim@ngus.net> | 2001-07-03 17:43:15 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-07-03 17:43:15 +0000 |
commit | ad0e631684f50091535a780d45f81d98f15a692f (patch) | |
tree | 4765c61e33539c26565312cf1b347921f9b9cbd3 /src/game/bg_public.h | |
parent | 29cd16eaf0c6ca52b63ea4645cf206c5f8b7d791 (diff) |
Some restructuring to g_buildable.c and bg_misc.c. Commented g_buildable.c a bit better
Diffstat (limited to 'src/game/bg_public.h')
-rw-r--r-- | src/game/bg_public.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game/bg_public.h b/src/game/bg_public.h index c7a4b3fa..c5307569 100644 --- a/src/game/bg_public.h +++ b/src/game/bg_public.h @@ -838,6 +838,10 @@ typedef struct int nextthink; + int turretFireSpeed; + int turretRange; + weapon_t turretProjType; + qboolean creepTest; qboolean reactorTest; } buildableAttributes_t; @@ -898,6 +902,9 @@ int BG_FindMODForBuildable( int bclass ); int BG_FindTeamForBuildable( int bclass ); int BG_FindEventForBuildable( int bclass ); int BG_FindNextThinkForBuildable( int bclass ); +int BG_FindFireSpeedForBuildable( int bclass ); +int BG_FindRangeForBuildable( int bclass ); +weapon_t BG_FindProjTypeForBuildable( int bclass ); int BG_FindCreepTestForBuildable( int bclass ); int BG_FindUniqueTestForBuildable( int bclass ); |