]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/cheats.qh
Move client setup to ClientState_attach
[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 float CheatImpulse(int imp);
13 float CheatCommand(float argc);
14 float CheatFrame();
15
16 const float CHRAME_DRAG = 8;
17
18 void Drag_MoveDrag(entity from, entity to); // call this from CopyBody
19 #endif