2015-01-20 04:13:12 +00:00
|
|
|
class Extended_PreInit_EventHandlers {
|
2015-02-14 08:50:26 +00:00
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_pre_init));
|
|
|
|
};
|
2015-01-20 04:13:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_PostInit_EventHandlers {
|
2015-02-14 08:50:26 +00:00
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_post_init));
|
|
|
|
};
|
2015-01-20 04:13:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_GetIn_EventHandlers {
|
2015-02-14 08:50:26 +00:00
|
|
|
class B_Heli_Attack_01_F {
|
|
|
|
class ADDON {
|
2015-04-02 17:05:50 +00:00
|
|
|
clientGetIn = QUOTE(_this call FUNC(onGetIn));
|
2015-02-14 08:50:26 +00:00
|
|
|
};
|
|
|
|
};
|
2015-01-20 04:13:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_GetOut_EventHandlers {
|
2015-02-14 08:50:26 +00:00
|
|
|
class B_Heli_Attack_01_F {
|
|
|
|
class ADDON {
|
2015-04-02 17:05:50 +00:00
|
|
|
clientGetOut = QUOTE(_this call FUNC(onGetOut));
|
2015-02-14 08:50:26 +00:00
|
|
|
};
|
|
|
|
};
|
2015-01-20 04:13:12 +00:00
|
|
|
};
|