]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/cheats.qh
Merge branch 'master' into morphed/hagar
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / cheats.qh
1 #ifndef CHEATS_H
2 #define CHEATS_H
3
4 #include "../common/impulses/all.qh"
5
6 //float autocvar_sv_cheats; // must... declare... global
7
8 float cheatcount_total;
9 .float cheatcount;
10 void CheatInit();
11 void CheatShutdown();
12 void CheatShutdownClient();
13 float CheatImpulse(int imp);
14 float CheatCommand(float argc);
15 float CheatFrame();
16
17 const float CHRAME_DRAG = 8;
18
19 void Drag_MoveDrag(entity from, entity to); // call this from CopyBody
20 #endif