X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fanticheat.qh;h=dd870dd397ceee549e4786adc25478f3fbb6e92e;hb=8c1b0e27f131c21a6004c2e43749a4b7ef317eb4;hp=e46dcce7b2051a8af3e8e847975d76e41b5079f3;hpb=d6f4b04518c1c8ccdd005c695d6ffc5167d3c1a9;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/anticheat.qh b/qcsrc/server/anticheat.qh index e46dcce7b..dd870dd39 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_to_eventlog(entity this); +void anticheat_report_to_playerstats(entity this); +void anticheat_register_to_playerstats(); -float anticheat_getvalue(string name); +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(); +void anticheat_fixangle(entity this);