mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-22 03:51:12 +00:00
25 lines
462 B
C++
25 lines
462 B
C++
#ifndef SERVER_qh
|
|
#define SERVER_qh 1
|
|
|
|
@extern {
|
|
float max_clients;
|
|
|
|
// Various cvars [possibly] referenced by QC
|
|
float rocket_jump;
|
|
|
|
float sv_mintic, sv_maxtic;
|
|
|
|
float sv_gravity;
|
|
float sv_stopspeed, sv_maxspeed, sv_spectatormaxspeed;
|
|
float sv_accelerate, sv_airaccelerate, sv_wateraccelerate;
|
|
float sv_friction, sv_waterfriction;
|
|
|
|
float cl_rollangle, cl_rollspeed;
|
|
|
|
void () StartFrame;
|
|
|
|
void () PlayerStartFrame;
|
|
void () PlayerEndFrame;
|
|
};
|
|
|
|
#endif
|