]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/sv_main.qh
Further cleanup of defs.qh
[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 .float species;
18
19 .float contents_damagetime;
20
21 /*
22 ==================
23 main
24
25 unused but required by the engine
26 ==================
27 */
28 void main ();