ACE3/TO_MERGE/cse/f_eh/Extended_Init_EventHandlers.h
2015-01-12 23:20:16 +01:00

103 lines
1.6 KiB
C++

class Extended_Fired_Eventhandlers
{
class AllVehicles
{
class cse_CBA_COMPAT_XEH
{
Fired = "[_this,'fired'] call cse_fnc_eventHandler_F;";
};
};
};
class Extended_HandleDamage_Eventhandlers
{
class AllVehicles
{
class cse_CBA_COMPAT_XEH
{
handleDamage = "[_this,'handleDamage'] call CSE_fnc_HandleDamage_EH_F;";
};
};
};
class Extended_FiredNear_Eventhandlers
{
class AllVehicles
{
class cse_CBA_COMPAT_XEH
{
FiredNear = "[_this,'firedNear'] call cse_fnc_eventHandler_F;";
};
};
};
class Extended_Killed_Eventhandlers
{
class AllVehicles
{
class cse_CBA_COMPAT_XEH
{
Killed = "[_this,'killed'] call cse_fnc_eventHandler_F;";
};
};
};
class Extended_Local_Eventhandlers
{
class AllVehicles
{
class cse_CBA_COMPAT_XEH
{
Local = "[_this,'local'] call cse_fnc_eventHandler_F;";
};
};
};
class Extended_Respawn_Eventhandlers
{
class AllVehicles
{
class cse_CBA_COMPAT_XEH {
Respawn = "[_this,'respawn'] call cse_fnc_eventHandler_F;";
};
};
};
class Extended_Take_Eventhandlers
{
class AllVehicles
{
class cse_CBA_COMPAT_XEH {
Take = "[_this,'take'] call cse_fnc_eventHandler_F;";
};
};
};
class Extended_Put_Eventhandlers
{
class AllVehicles
{
class cse_CBA_COMPAT_XEH {
Put = "[_this,'put'] call cse_fnc_eventHandler_F;";
};
};
};
class Extended_GetIn_Eventhandlers
{
class AllVehicles
{
class cse_CBA_COMPAT_XEH {
GetIn = "[_this,'getIn'] call cse_fnc_eventHandler_F;";
};
};
};
class Extended_GetOut_EventHandlers
{
class AllVehicles
{
class cse_CBA_COMPAT_XEH {
GetOut = "[_this,'getOut'] call cse_fnc_eventHandler_F;";
};
};
};