]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/anticheat.qh
Properly support team field on trigger_multiple
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / anticheat.qh
index e1055ac44e95f2f96951d7b535dba9cd77882f3a..dd870dd397ceee549e4786adc25478f3fbb6e92e 100644 (file)
@@ -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(entity this);
-#endif