mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
3b15014099
* Add possiblity to rotate a carried object * simplify the code by using cba_events_control instead of a custom set variable * le ACE and don't save frames
56 lines
1.2 KiB
C++
56 lines
1.2 KiB
C++
|
|
class Extended_PreStart_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE(call COMPILE_FILE(XEH_preStart));
|
|
};
|
|
};
|
|
|
|
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));
|
|
};
|
|
};
|
|
|
|
class Extended_Init_EventHandlers {
|
|
class CAManBase {
|
|
class ADDON {
|
|
init = QUOTE(_this call DFUNC(initPerson));
|
|
exclude[] = {"VirtualMan_F"};
|
|
};
|
|
};
|
|
class StaticWeapon {
|
|
class ADDON {
|
|
init = QUOTE(_this call DFUNC(initObject));
|
|
};
|
|
};
|
|
class ThingX {
|
|
class ADDON {
|
|
init = QUOTE(_this call DFUNC(initObject));
|
|
};
|
|
};
|
|
class Land_PortableLight_single_F {
|
|
class ADDON {
|
|
init = QUOTE(_this call DFUNC(initObject));
|
|
};
|
|
};
|
|
class Land_Camping_Light_F {
|
|
class ADDON {
|
|
init = QUOTE(_this call DFUNC(initObject));
|
|
};
|
|
};
|
|
};
|
|
|
|
class Extended_Killed_EventHandlers {
|
|
class CAManBase {
|
|
class ADDON {
|
|
killed = QUOTE(_this call DFUNC(handleKilled));
|
|
};
|
|
};
|
|
};
|