X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fanticheat.qh;h=e1055ac44e95f2f96951d7b535dba9cd77882f3a;hb=826222f84e886d85179a032b07edc71d99982040;hp=e46dcce7b2051a8af3e8e847975d76e41b5079f3;hpb=b2bebff5bd5d111bb469de032d9b878d95f3c033;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/anticheat.qh b/qcsrc/server/anticheat.qh index e46dcce7b..e1055ac44 100644 --- a/qcsrc/server/anticheat.qh +++ b/qcsrc/server/anticheat.qh @@ -1,8 +1,10 @@ -void anticheat_init(); +#ifndef ANTICHEAT_H +#define ANTICHEAT_H + +void anticheat_init(entity this); void anticheat_report(); -void anticheat_shutdown(); -void anticheat_physics(); +void anticheat_physics(entity this); void anticheat_spectatecopy(entity spectatee); void anticheat_prethink(); @@ -11,4 +13,5 @@ float anticheat_getvalue(string name); void anticheat_startframe(); void anticheat_endframe(); -void anticheat_fixangle(); +void anticheat_fixangle(entity this); +#endif