aboutsummaryrefslogtreecommitdiff
path: root/src/libparsec/include/globals.h
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2026-08-24 11:16:07 +0200
committerFelix Morgner <felix.morgner@gmail.com>2026-08-24 11:16:07 +0200
commitc068f22329d5cc722622a2183bbb22eef2093df7 (patch)
tree12d56c1aede67988a55e241364606bfbb4dba933 /src/libparsec/include/globals.h
downloadopenparsec-c068f22329d5cc722622a2183bbb22eef2093df7.tar.xz
openparsec-c068f22329d5cc722622a2183bbb22eef2093df7.zip
initial importHEADmain
Diffstat (limited to 'src/libparsec/include/globals.h')
-rw-r--r--src/libparsec/include/globals.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/libparsec/include/globals.h b/src/libparsec/include/globals.h
new file mode 100644
index 0000000..b818b06
--- /dev/null
+++ b/src/libparsec/include/globals.h
@@ -0,0 +1,53 @@
+/*
+ * PARSEC HEADER: globals.h
+ */
+
+#ifndef _GLOBALS_H_
+#define _GLOBALS_H_
+
+#ifdef PARSEC_SERVER
+
+ // include subsystems globals ----------------------------
+
+ //#include "aud_glob.h" // AUDIO
+ //#include "inp_glob.h" // INPUT
+ //#include "net_glob.h" // NETWORKING
+ //#include "sys_glob.h" // SYSTEM
+ //#include "vid_glob.h" // VIDEO
+
+ // include engine core globals ---------------------------
+
+ #include "e_global_sv.h" // ENGINE CORE ( SERVER )
+
+ // include game code globals -----------------------------
+
+ #include "e_world.h"
+
+#else
+
+ // include subsystems globals ----------------------------
+
+ #include "aud_glob.h" // AUDIO
+ #include "inp_glob.h" // INPUT
+ #include "net_glob.h" // NETWORKING
+ #include "sys_glob.h" // SYSTEM
+ #include "vid_glob.h" // VIDEO
+
+ #include "d_glob.h" // DRAWING
+ #include "r_glob.h" // RENDERING
+
+ // include engine core globals ---------------------------
+
+ #include "e_global.h" // ENGINE CORE
+
+
+ // include game code globals -----------------------------
+
+ #include "g_global.h" // GAME CODE
+ #include "h_global.h" // GAME CODE/HUD
+
+#endif // PARSEC_SERVER
+
+#endif // _GLOBALS_H_
+
+