2003-10-24 21:43:32 +00:00
|
|
|
#ifndef SERVER_qh
|
|
|
|
#define SERVER_qh 1
|
|
|
|
|
|
|
|
@extern {
|
2004-02-08 07:34:17 +00:00
|
|
|
float max_clients;
|
2003-10-24 21:43:32 +00:00
|
|
|
|
2004-02-08 07:34:17 +00:00
|
|
|
// Various cvars [possibly] referenced by QC
|
|
|
|
float rocket_jump;
|
2003-10-24 21:43:32 +00:00
|
|
|
|
2004-02-08 07:34:17 +00:00
|
|
|
float sv_mintic, sv_maxtic;
|
2003-10-24 21:43:32 +00:00
|
|
|
|
2004-02-08 07:34:17 +00:00
|
|
|
float sv_gravity;
|
|
|
|
float sv_stopspeed, sv_maxspeed, sv_spectatormaxspeed;
|
|
|
|
float sv_accelerate, sv_airaccelerate, sv_wateraccelerate;
|
|
|
|
float sv_friction, sv_waterfriction;
|
2003-10-24 21:43:32 +00:00
|
|
|
|
2004-02-08 07:34:17 +00:00
|
|
|
float cl_rollangle, cl_rollspeed;
|
2003-10-24 21:43:32 +00:00
|
|
|
|
2004-02-08 07:34:17 +00:00
|
|
|
void () StartFrame;
|
2003-10-24 21:43:32 +00:00
|
|
|
|
2004-02-08 07:34:17 +00:00
|
|
|
void () PlayerStartFrame;
|
|
|
|
void () PlayerEndFrame;
|
2003-10-24 21:43:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|