ACE3/addons/modules/CfgEventHandlers.hpp
Neviothr ade87adf46 Modules Cleanup (#4813)
* Cleanup

* Added newlines
2017-01-14 15:47:03 -06:00

18 lines
430 B
C++

class Extended_PreStart_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preStart));
};
};
class Extended_PreInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preInit));
};
};
class Extended_PostInit_EventHandlers {
class _ACE_modules { // using a _ so it is the first postInit to be executed
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};