allow clipvelocity outside of the bg_'s

This commit is contained in:
Bryce Hutchings 2002-08-21 03:43:57 +00:00
parent 6ab9ea3cab
commit ec8a18194c
2 changed files with 8 additions and 1 deletions

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.9 2002/08/21 03:43:23 niceass
// allow clipvelocity outside of the bg_'s
//
// Revision 1.8 2002/06/29 02:51:16 niceass
// removed ladder stuff
//
@ -77,7 +80,6 @@ extern float pm_flightfriction;
extern int c_pmove;
void PM_ClipVelocity(vec3_t in, vec3_t normal, vec3_t out, float overbounce);
void PM_AddTouchEnt(int entityNum);
void PM_AddEvent(int newEvent);

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.92 2002/08/21 03:43:57 niceass
// allow clipvelocity outside of the bg_'s
//
// Revision 1.91 2002/07/26 06:21:43 jbravo
// Fixed the MM settings stuff so it works on remote servers also.
// Removed the MM_NAMES_COLOR since it broke on nicks with color in them.
@ -1461,3 +1464,5 @@ qboolean IsWoodFlag(int flag);
holdable_t CharToItem(char *name, holdable_t defitem);
weapon_t CharToWeapon(char *name, weapon_t defweapon);
void PM_ClipVelocity(vec3_t in, vec3_t normal, vec3_t out, float overbounce);