X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fanticheat.qh;h=2b0522b991fb25747ce48c06003cf4433c74e30d;hb=b2e9e85b747835df6898c20797624b24470ed383;hp=5e6599b7e01730b7ce82a2948d0fb951e790a7eb;hpb=7bcb3a89b3271e018da4d92437dc5ba125ea8698;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/anticheat.qh b/qcsrc/server/anticheat.qh index 5e6599b7e..2b0522b99 100644 --- a/qcsrc/server/anticheat.qh +++ b/qcsrc/server/anticheat.qh @@ -1,18 +1,15 @@ -#ifndef ANTICHEAT_H -#define ANTICHEAT_H +#pragma once void anticheat_init(entity this); -void anticheat_report(); -void anticheat_shutdown(); +void anticheat_report(entity this); void anticheat_physics(entity this); -void anticheat_spectatecopy(entity spectatee); -void anticheat_prethink(); +void anticheat_spectatecopy(entity this, entity spectatee); +void anticheat_prethink(entity this); -float anticheat_getvalue(string name); +float anticheat_getvalue(entity this, string name); void anticheat_startframe(); void anticheat_endframe(); -void anticheat_fixangle(); -#endif +void anticheat_fixangle(entity this);