I have a single question:
I'm currently building a 'giant' FPS, with networking, AI, and arena-style combat, and I've based it around 'modules.' Basically a 'module' in this case is just an include file, filled with Globals, Constants, Types, and Functions related to that category. The 'player' module carries all player-related functions, globals, constants, and types.
I have a main.bb file that includes all the modules. If I create a Global in one of the modules, will I be able to use that Global in the main file, as well as the other modules?
This is sort of like PHP's 'superglobals,' which include "$_POST," "$_REQUEST," and "$_SERVER."
I'm currently building a 'giant' FPS, with networking, AI, and arena-style combat, and I've based it around 'modules.' Basically a 'module' in this case is just an include file, filled with Globals, Constants, Types, and Functions related to that category. The 'player' module carries all player-related functions, globals, constants, and types.
I have a main.bb file that includes all the modules. If I create a Global in one of the modules, will I be able to use that Global in the main file, as well as the other modules?
This is sort of like PHP's 'superglobals,' which include "$_POST," "$_REQUEST," and "$_SERVER."