diff options
author | Tim Angus <tim@ngus.net> | 2001-08-28 18:35:20 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-08-28 18:35:20 +0000 |
commit | 0ec416c5c51458d1faac712884c2d7cbddd2eb43 (patch) | |
tree | 04dd2d2387857a7d5583f70a13bd5b6717796420 /src/game/bg_public.h | |
parent | 5af435dc4a2c87798f1b72b1e113209e1d1c2de4 (diff) |
Ceiling eggs
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 1c068d35..1a78753a 100644 --- a/src/game/bg_public.h +++ b/src/game/bg_public.h @@ -832,6 +832,7 @@ typedef struct int abilities; float buildDist; + float launchSpeed; int fov; float bob; @@ -879,6 +880,9 @@ typedef struct int turretRange; weapon_t turretProjType; + float minNormal; + qboolean invertNormal; + qboolean creepTest; qboolean reactorTest; } buildableAttributes_t; @@ -948,6 +952,8 @@ int BG_FindNextThinkForBuildable( int bclass ); int BG_FindFireSpeedForBuildable( int bclass ); int BG_FindRangeForBuildable( int bclass ); weapon_t BG_FindProjTypeForBuildable( int bclass ); +float BG_FindMinNormalForBuildable( int bclass ); +qboolean BG_FindInvertNormalForBuildable( int bclass ); int BG_FindCreepTestForBuildable( int bclass ); int BG_FindUniqueTestForBuildable( int bclass ); @@ -965,6 +971,7 @@ float BG_FindStickyForClass( int pclass ); int BG_FindSteptimeForClass( int pclass ); qboolean BG_ClassHasAbility( int pclass, int ability ); float BG_FindBuildDistForClass( int pclass ); +float BG_FindLaunchSpeedForClass( int pclass ); qboolean BG_ClassCanEvolveFromTo( int fclass, int tclass ); int BG_FindEvolveTimeForClass( int pclass ); int BG_FindValueOfClass( int pclass ); |