]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/cheats.qh
Impulses: migration pathway
[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 CheatInitClient();
13 void CheatShutdownClient();
14 float CheatImpulse(float i);
15 float CheatCommand(float argc);
16 float CheatFrame();
17
18 const float CHRAME_DRAG = 8;
19
20 void Drag_MoveDrag(entity from, entity to); // call this from CopyBody
21 #endif