mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
572 B
Plaintext
26 lines
572 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP(addObjectToCurator);
|
|
PREP(bi_moduleCurator);
|
|
PREP(bi_moduleMine);
|
|
PREP(bi_moduleProjectile);
|
|
PREP(bi_moduleRemoteControl);
|
|
PREP(handleZeusUnitAssigned);
|
|
PREP(moduleAddSpareTrack);
|
|
PREP(moduleAddSpareWheel);
|
|
PREP(moduleCaptive);
|
|
PREP(moduleSetMedic);
|
|
PREP(moduleSetMedicalVehicle);
|
|
PREP(moduleSetMedicalFacility);
|
|
PREP(moduleSurrender);
|
|
PREP(moduleUnconscious);
|
|
PREP(moduleZeusSettings);
|
|
|
|
if (isServer) then {
|
|
["zeusUnitAssigned", FUNC(handleZeusUnitAssigned)] call EFUNC(common,addEventHandler);
|
|
};
|
|
|
|
ADDON = true;
|