]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/cl_client.qh
b4c125c6bac84f93aad5bedb1a63ed83eb231c7f
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / cl_client.qh
1 #ifndef CL_CLIENT_H
2 #define CL_CLIENT_H
3 float c1, c2, c3, c4;
4
5 void play_countdown(float finished, string samp);
6
7 float CalcRotRegen(float current, float regenstable, float regenfactor, float regenlinear, float regenframetime, float rotstable, float rotfactor, float rotlinear, float rotframetime, float limit);
8
9 float Spectate(entity pl);
10
11 #define SPECTATE_COPY() [[accumulate]] void SpectateCopy(entity this, entity spectatee)
12 #define SPECTATE_COPYFIELD(fld) SPECTATE_COPY() { this.(fld) = spectatee.(fld); }
13
14 #endif