X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fanticheat.qh;h=2b0522b991fb25747ce48c06003cf4433c74e30d;hb=f4cb5d9a857411199bcb6f95112252a183955a00;hp=e46dcce7b2051a8af3e8e847975d76e41b5079f3;hpb=43f2705555176d1c352e94ace1b9ea4d24e15434;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/anticheat.qh b/qcsrc/server/anticheat.qh index e46dcce7b..2b0522b99 100644 --- a/qcsrc/server/anticheat.qh +++ b/qcsrc/server/anticheat.qh @@ -1,14 +1,15 @@ -void anticheat_init(); -void anticheat_report(); -void anticheat_shutdown(); +#pragma once -void anticheat_physics(); -void anticheat_spectatecopy(entity spectatee); -void anticheat_prethink(); +void anticheat_init(entity this); +void anticheat_report(entity this); -float anticheat_getvalue(string name); +void anticheat_physics(entity this); +void anticheat_spectatecopy(entity this, entity spectatee); +void anticheat_prethink(entity this); + +float anticheat_getvalue(entity this, string name); void anticheat_startframe(); void anticheat_endframe(); -void anticheat_fixangle(); +void anticheat_fixangle(entity this);