ACE3/addons/cargo/XEH_preInit.sqf

29 lines
577 B
Plaintext
Raw Normal View History

2015-03-29 13:20:39 +00:00
#include "script_component.hpp"
ADDON = false;
PREP(canLoad);
2015-08-10 21:07:47 +00:00
PREP(canLoadItemIn);
PREP(canUnloadItem);
PREP(findNearestVehicle);
PREP(getCargoSpaceLeft);
PREP(getSizeItem);
PREP(handleDestroyed);
2015-08-10 21:07:47 +00:00
PREP(initObject);
PREP(initVehicle);
PREP(loadItem);
PREP(moduleSettings);
2015-08-10 21:07:47 +00:00
PREP(onMenuOpen);
PREP(startLoadIn);
PREP(startUnload);
PREP(unloadItem);
PREP(validateCargoSpace);
2015-08-10 21:07:47 +00:00
GVAR(initializedItemClasses) = [];
if (isServer) then {
["cargo_hideItem", {params ["_object", "_status"]; _object hideObjectGlobal _status;}] call EFUNC(common,addEventHandler);
2015-08-10 21:07:47 +00:00
};
2015-03-29 13:20:39 +00:00
ADDON = true;