ACE3/addons/laser_selfdesignate/CfgEventhandlers.hpp
PabstMirror b38bd016f5 Semicolon and bad p3d data paths
P3d's had bad \data\ folder, Models not actually used anywhere, but
pboProject complains
2015-02-02 20:15:45 -06:00

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));
};
};
};