]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/main.qh
Move some more functions out of miscfunctions, split eliminated players handling...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / main.qh
1 #pragma once
2
3 /** print(), but only print if the server is not local */
4 void dedicated_print(string input);
5
6 bool expr_evaluate(string s);
7
8 #ifdef PROFILING
9 float client_cefc_accumulator;
10 float client_cefc_accumulatortime;
11 #endif
12
13 float servertime, serverprevtime, serverframetime;
14
15 .vector oldvelocity; // for fall damage
16
17 .float watersound_finished;
18
19 .bool iscreature;
20 .float species;
21
22 .float contents_damagetime;
23
24 /*
25 ==================
26 main
27
28 unused but required by the engine
29 ==================
30 */
31 void main ();