mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
b38bd016f5
P3d's had bad \data\ folder, Models not actually used anywhere, but pboProject complains
28 lines
517 B
C++
28 lines
517 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));
|
|
};
|
|
};
|
|
};
|