mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-26 05:40:59 +00:00
88c055ea3c
<taniwha> zinx: thanks :) zinx' klik mod :)
27 lines
449 B
C++
27 lines
449 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
|