Use macros

Use the defined macros
This commit is contained in:
NMAUS2019 2020-02-21 16:28:20 +11:00 committed by GitHub
parent 9e2a2f2f01
commit 93bd7f2e00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,11 @@
class Extended_PreInit_EventHandlers {
class ADDON {
init = QUOTE(call compile preprocessFileLineNumbers 'XEH_preInit.sqf');
init = QUOTE(call COMPILE_FILE(XEH_preInit));
};
};
class Extended_PostInit_EventHandlers {
class ADDON {
init = QUOTE(call compile preprocessFileLineNumbers 'XEH_postInit.sqf');
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};