Missile Guidance - Rename preInit and postInit files (#9881)

Renamed preInit and postInit files
This commit is contained in:
johnb432 2024-03-28 04:37:36 +01:00 committed by GitHub
parent 4952c09f41
commit 512ceaa1a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 2 deletions

View File

@ -7,13 +7,13 @@ class Extended_PreStart_EventHandlers {
class Extended_PreInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_SCRIPT(XEH_pre_init));
init = QUOTE(call COMPILE_SCRIPT(XEH_preInit));
};
};
class Extended_PostInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_SCRIPT(XEH_post_init));
init = QUOTE(call COMPILE_SCRIPT(XEH_postInit));
};
};