From c068f22329d5cc722622a2183bbb22eef2093df7 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 24 Aug 2026 11:16:07 +0200 Subject: initial import --- src/libparsec/include/globals.h | 53 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/libparsec/include/globals.h (limited to 'src/libparsec/include/globals.h') 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_ + + -- cgit v1.2.3