mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
class Extended_PreInit_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE(call COMPILE_FILE(XEH_preInit));
|
|
};
|
|
};
|
|
|
|
class Extended_PostInit_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE(call COMPILE_FILE(XEH_postInit));
|
|
};
|
|
};
|
|
//release escorted captive when entering a vehicle
|
|
class Extended_GetIn_EventHandlers {
|
|
class All {
|
|
class GVAR(AutoDetachCaptive) {
|
|
getIn = QUOTE(_this call FUNC(handleGetIn));
|
|
};
|
|
};
|
|
};
|
|
//reset captive animation after leaving vehicle
|
|
class Extended_GetOut_EventHandlers {
|
|
class All {
|
|
class GVAR(AutoDetachCaptive) {
|
|
getOut = QUOTE(_this call FUNC(handleGetOut));
|
|
};
|
|
};
|
|
};
|
|
//reset captivity and escorting status when getting killed
|
|
class Extended_Killed_EventHandlers {
|
|
class CAManBase {
|
|
class GVAR(AutoDetachCaptive) {
|
|
killed = QUOTE(_this call FUNC(handleKilled));
|
|
};
|
|
};
|
|
};
|
|
//mission start
|
|
class Extended_InitPost_EventHandlers {
|
|
class CAManBase {
|
|
class GVAR(InitPost) {
|
|
init = QUOTE(_this call FUNC(handleUnitInitPost));
|
|
};
|
|
};
|
|
};
|