X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fanticheat.qh;h=dd870dd397ceee549e4786adc25478f3fbb6e92e;hb=879dac5094b8eb7890fb5fd970f822da31ee242f;hp=80c7636a0b6852a86d1b35d36e84ff87e2e15f5f;hpb=0e7ed909bffb4ff21f0c68d163edfc17487e380a;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/anticheat.qh b/qcsrc/server/anticheat.qh index 80c7636a0..dd870dd39 100644 --- a/qcsrc/server/anticheat.qh +++ b/qcsrc/server/anticheat.qh @@ -1,9 +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_to_eventlog(entity this); +void anticheat_report_to_playerstats(entity this); +void anticheat_register_to_playerstats(); -void anticheat_serverframe(); +void anticheat_physics(entity this); +void anticheat_spectatecopy(entity this, entity spectatee); +void anticheat_prethink(entity this); + +void anticheat_startframe(); +void anticheat_endframe(); + +void anticheat_fixangle(entity this);