X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fanticheat.qh;h=dd870dd397ceee549e4786adc25478f3fbb6e92e;hb=8298414706b35c6726479437b0775aed4ac9b55d;hp=3bb5d251e95c1765ad20d0a6623ae578fbf03160;hpb=9f70bdba9a6fb2c06324be13504341da967f7028;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/anticheat.qh b/qcsrc/server/anticheat.qh index 3bb5d251e..dd870dd39 100644 --- a/qcsrc/server/anticheat.qh +++ b/qcsrc/server/anticheat.qh @@ -1,17 +1,15 @@ -#ifndef ANTICHEAT_H -#define ANTICHEAT_H +#pragma once void anticheat_init(entity this); -void anticheat_report(); +void anticheat_report_to_eventlog(entity this); +void anticheat_report_to_playerstats(entity this); +void anticheat_register_to_playerstats(); void anticheat_physics(entity this); -void anticheat_spectatecopy(entity spectatee); -void anticheat_prethink(); - -float anticheat_getvalue(string name); +void anticheat_spectatecopy(entity this, entity spectatee); +void anticheat_prethink(entity this); void anticheat_startframe(); void anticheat_endframe(); -void anticheat_fixangle(); -#endif +void anticheat_fixangle(entity this);