]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/cheats.qh
Merge branch 'master' into Mario/turrets
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / cheats.qh
1 #ifndef CHEATS_H
2 #define CHEATS_H
3
4 //float autocvar_sv_cheats; // must... declare... global
5
6 float cheatcount_total;
7 .float cheatcount;
8 void CheatInit();
9 void CheatShutdown();
10 void CheatInitClient();
11 void CheatShutdownClient();
12 float CheatImpulse(float i);
13 float CheatCommand(float argc);
14 float CheatFrame();
15
16 void Drag_MoveDrag(entity from, entity to); // call this from CopyBody
17 #endif