ACE3/addons/dragging/CfgEventHandlers.hpp

58 lines
1.2 KiB
C++
Raw Normal View History

2015-03-14 11:05:43 +00:00
2016-02-22 14:20:36 +00:00
class Extended_PreStart_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preStart));
};
};
2015-03-14 11:05:43 +00:00
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 {
2015-03-24 15:12:46 +00:00
class CAManBase {
class ADDON {
init = QUOTE(_this call DFUNC(initPerson));
};
};
2015-03-18 12:36:22 +00:00
class StaticWeapon {
class ADDON {
init = QUOTE(_this call DFUNC(initObject));
};
};
2015-09-27 00:13:32 +00:00
class ThingX {
class ADDON {
init = QUOTE(_this call DFUNC(initObject));
};
};
2015-08-22 18:00:26 +00:00
class Land_PortableLight_single_F {
class ADDON {
init = QUOTE(_this call DFUNC(initObject));
};
};
};
2015-03-18 14:42:33 +00:00
class Extended_Killed_EventHandlers {
class CAManBase {
class ADDON {
killed = QUOTE(_this call DFUNC(handleKilled));
};
};
};
class Extended_AnimChanged_EventHandlers {
class CAManBase {
class ADDON {
animChanged = QUOTE(_this call DFUNC(handleAnimChanged));
};
};
};