]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/util.qh
Working on notification initialization-- plus, start working on weapons
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / util.qh
index d2b63f7ba2c5c858b704c8da847bc9d759d14cd0..2eebd1b8d59c0ef9225da4782b8b29db115151f5 100644 (file)
@@ -449,3 +449,14 @@ string process_time(string fields, float seconds);
 #ifdef SVQC
 void dedicated_print(string input);
 #endif
+
+// todo: better way to do this?
+#ifdef MENUQC
+#define PROGNAME "MENUQC"
+#else
+#ifdef SVQC
+#define PROGNAME "SVQC"
+#else
+#define PROGNAME "CSQC"
+#endif
+#endif