mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a40b0d48f2
* HEMTT v10 Compatibility * Update addons/field_rations/CfgUIGrids.hpp Co-authored-by: PabstMirror <pabstmirror@gmail.com> * fix PabstMirror review * optionals * End empty macro definitions with semi-colon (HEMTT v0.10) * Adapt to HEMTT v0.10.0-a14 * Revert End empty macro definitions with semi-colon * Disable old HEMTT build step in CI * Add missing include and fix macro usage and include casings * End empty macro definitions with semi-colon (HEMTT v0.10) * Update addons/disarming/functions/fnc_showItemsInListbox.sqf Co-authored-by: PabstMirror <pabstmirror@gmail.com> * cleanup test code * arty - keep style same as before * fix fire screams * Update script_component.hpp * Keep old hemtt/workflow/sqfc * Update arma.yml * Update arma.yml * Update CfgUIGrids.hpp --------- Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: jonpas <jonpas33@gmail.com>
54 lines
2.0 KiB
C++
54 lines
2.0 KiB
C++
class CfgVehicles {
|
|
class ACE_Module;
|
|
class ACE_ModuleSwitchUnits: ACE_Module {
|
|
author = ECSTRING(common,ACETeam);
|
|
category = "ACE";
|
|
displayName = CSTRING(DisplayName);
|
|
function = QFUNC(module);
|
|
scope = 1;
|
|
isGlobal = 1;
|
|
icon = QPATHTOF(UI\Icon_Module_SwitchUnits_ca.paa);
|
|
class Arguments {
|
|
class SwitchToWest {
|
|
displayName = CSTRING(SwitchToWest_DisplayName);
|
|
description = CSTRING(SwitchToWest_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
class SwitchToEast {
|
|
displayName = CSTRING(SwitchToEast_DisplayName);
|
|
description = CSTRING(SwitchToEast_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
class SwitchToIndependent {
|
|
displayName = CSTRING(SwitchToIndependent_DisplayName);
|
|
description = CSTRING(SwitchToIndependent_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
class SwitchToCivilian {
|
|
displayName = CSTRING(SwitchToCivilian_DisplayName);
|
|
description = CSTRING(SwitchToCivilian_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
class EnableSafeZone {
|
|
displayName = CSTRING(EnableSafeZone_DisplayName);
|
|
description = CSTRING(EnableSafeZone_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 1;
|
|
};
|
|
class SafeZoneRadius {
|
|
displayName = CSTRING(SafeZoneRadius_DisplayName);
|
|
description = CSTRING(SafeZoneRadius_Description);
|
|
typeName = "NUMBER";
|
|
defaultValue = 100;
|
|
};
|
|
};
|
|
class ModuleDescription {
|
|
description = CSTRING(Module_Description);
|
|
};
|
|
};
|
|
};
|