ACE3/addons/overpressure/CfgEventHandlers.hpp

52 lines
1.3 KiB
C++
Raw Normal View History

2015-01-14 04:15:58 +00:00
class Extended_PreInit_EventHandlers {
class ADDON {
2015-02-15 14:55:00 +00:00
init = QUOTE(call COMPILE_FILE(XEH_preInit));
2015-01-14 04:15:58 +00:00
};
};
class Extended_PostInit_EventHandlers {
class ADDON {
2015-02-15 14:55:00 +00:00
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
};
class Extended_FiredBIS_EventHandlers {
2015-01-14 04:15:58 +00:00
class CAManBase {
2015-02-15 14:48:40 +00:00
class ADDON {
clientFiredBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHBB);};);
2015-01-14 04:15:58 +00:00
};
};
class Tank {
class ADDON {
2015-08-30 05:38:17 +00:00
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
};
};
class Car {
class ADDON {
2015-08-30 05:38:17 +00:00
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
};
};
class Helicopter {
class ADDON {
2015-08-30 05:38:17 +00:00
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
};
};
class Plane {
class ADDON {
2015-08-30 05:38:17 +00:00
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
};
};
class Ship_F {
2015-02-15 14:48:40 +00:00
class ADDON {
2015-08-30 05:38:17 +00:00
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
2015-01-14 04:15:58 +00:00
};
};
2015-04-02 22:24:59 +00:00
class StaticWeapon {
2015-02-15 20:29:54 +00:00
class ADDON {
2015-08-30 05:38:17 +00:00
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
2015-02-15 20:29:54 +00:00
};
};
2015-01-14 04:15:58 +00:00
};