mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28 lines
595 B
C++
28 lines
595 B
C++
class Extended_PreInit_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE(call COMPILE_FILE(XEH_pre_init));
|
|
};
|
|
};
|
|
|
|
class Extended_PostInit_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE(call COMPILE_FILE(XEH_post_init));
|
|
};
|
|
};
|
|
|
|
class Extended_GetIn_EventHandlers {
|
|
class B_Heli_Attack_01_F {
|
|
class ADDON {
|
|
getIn = QUOTE(call FUNC(onGetin));
|
|
};
|
|
};
|
|
};
|
|
|
|
class Extended_GetOut_EventHandlers {
|
|
class B_Heli_Attack_01_F {
|
|
class ADDON {
|
|
getOut = QUOTE(call FUNC(onGetout));
|
|
};
|
|
};
|
|
};
|