]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/command/getreplies.qh
Merge branch 'terencehill/arc_suicide_message' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / getreplies.qh
index a0f9b21ef8fae18214da4fa6d47fa34954b1952e..f45bbe0166f5158bee09a82a28778318feb7888c 100644 (file)
@@ -1,5 +1,4 @@
-#ifndef GETREPLIES_H
-#define GETREPLIES_H
+#pragma once
 
 // ======================================================
 //  Declarations for reply messages, re-worked by Samual
@@ -14,11 +13,16 @@ const int LADDER_SIZE = 30; // ladder shows the top X players
 string top_uids[LADDER_SIZE];
 float top_scores[LADDER_SIZE];
 
-// allow functions to be used in other code like g_world.qc and race.qc
+// allow functions to be used in other code like world.qc and race.qc
 string getrecords(float page);
 string getrankings();
 string getladder();
 string getmaplist();
 string getlsmaps();
 string getmonsterlist();
-#endif
+
+void GetCvars_handleFloat(entity this, entity store, string thisname, float f, .float field, string name);
+
+void GetCvars_handleString(entity this, entity store, string thisname, float f, .string field, string name);
+
+void GetCvars(entity this, entity store, int f);