2015-03-10 17:05:56 +00:00
|
|
|
class Extended_PreInit_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_preInit));
|
|
|
|
};
|
|
|
|
};
|
2015-03-10 18:55:56 +00:00
|
|
|
|
|
|
|
class Extended_PostInit_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_postInit));
|
|
|
|
};
|
|
|
|
};
|
2015-03-11 14:21:35 +00:00
|
|
|
|
2015-09-20 15:05:34 +00:00
|
|
|
//Need initPost or we have problems with setVariable with addSpareParts
|
|
|
|
class Extended_InitPost_EventHandlers {
|
2015-03-11 14:21:35 +00:00
|
|
|
class Car {
|
|
|
|
class ADDON {
|
2015-09-17 16:19:47 +00:00
|
|
|
init = QUOTE(_this call DFUNC(addRepairActions));
|
|
|
|
serverInit = QUOTE(_this call DFUNC(addSpareParts));
|
2015-03-11 14:21:35 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class Tank {
|
|
|
|
class ADDON {
|
2015-09-17 16:19:47 +00:00
|
|
|
init = QUOTE(_this call DFUNC(addRepairActions));
|
|
|
|
serverInit = QUOTE(_this call DFUNC(addSpareParts));
|
2015-03-11 14:21:35 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class Helicopter {
|
|
|
|
class ADDON {
|
2015-09-17 16:19:47 +00:00
|
|
|
init = QUOTE(_this call DFUNC(addRepairActions));
|
|
|
|
serverInit = QUOTE(_this call DFUNC(addSpareParts));
|
2015-03-11 14:21:35 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class Plane {
|
|
|
|
class ADDON {
|
2015-09-17 16:19:47 +00:00
|
|
|
init = QUOTE(_this call DFUNC(addRepairActions));
|
|
|
|
serverInit = QUOTE(_this call DFUNC(addSpareParts));
|
2015-03-11 14:21:35 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class Ship_F {
|
|
|
|
class ADDON {
|
2015-09-17 16:19:47 +00:00
|
|
|
init = QUOTE(_this call DFUNC(addRepairActions));
|
|
|
|
serverInit = QUOTE(_this call DFUNC(addSpareParts));
|
2015-03-11 14:21:35 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|