]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/sv_main.qh
Some more defs.qh cleanup, update gameplay hash (again)
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / sv_main.qh
1 #pragma once
2
3 bool expr_evaluate(string s);
4
5 #ifdef PROFILING
6 float client_cefc_accumulator;
7 float client_cefc_accumulatortime;
8 #endif
9
10 float servertime, serverprevtime, serverframetime;
11
12 .vector oldvelocity; // for fall damage
13
14 .float watersound_finished;
15
16 .bool iscreature;
17
18 .float contents_damagetime;
19
20 /*
21 ==================
22 main
23
24 unused but required by the engine
25 ==================
26 */
27 void main ();