diff options
Diffstat (limited to 'source/pmove.h')
-rw-r--r-- | source/pmove.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/source/pmove.h b/source/pmove.h index c47b1c8..725ec82 100644 --- a/source/pmove.h +++ b/source/pmove.h @@ -29,22 +29,20 @@ Common between server and client so prediction matches */ typedef struct { + qboolean qwmode; qboolean airaccelerate; - qboolean strafeHack; - qboolean flyfix; - int qwmod; - float speedMultiplier; -// float upspeed; + qboolean strafehack; + qboolean flyhack; + qboolean waterhack; + float speedmult; + float watermult; float maxspeed; float friction; float waterfriction; float flyfriction; -#ifdef PMOVE_HACK - vec3_t origin; - vec3_t velocity; - qboolean highprec; -#endif } pmoveParams_t; void Pmove( pmove_t *pmove, pmoveParams_t *params ); +void PmoveInit( pmoveParams_t *pmp ); +void PmoveEnableQW( pmoveParams_t *pmp ); |