mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
44466e8be8
Conflicts: addons/map/CfgVehicles.hpp addons/medical/CfgVehicles.hpp Conflicts: addons/map/CfgVehicles.hpp addons/medical/CfgVehicles.hpp addons/optionsmenu/stringtable.xml
30 lines
1.0 KiB
C++
30 lines
1.0 KiB
C++
class Logic;
|
|
class Module_F: Logic {
|
|
class ModuleDescription {};
|
|
};
|
|
class ACE_ModuleExplosive: Module_F {
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
category = "ACE";
|
|
displayName = "$STR_ACE_Explosive_Module_DisplayName";
|
|
function = QUOTE(FUNC(module));
|
|
scope = 2;
|
|
isGlobal = 1;
|
|
icon = PATHTOF(UI\Icon_Module_Explosives_ca.paa);
|
|
class Arguments {
|
|
class RequireSpecialist {
|
|
displayName = "$STR_ACE_Explosive_RequireSpecialist_DisplayName";
|
|
description = "$STR_ACE_Explosive_RequireSpecialist_Description";
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
class PunishNonSpecialists {
|
|
displayName = "$STR_ACE_Explosive_PunishNonSpecialists_DisplayName";
|
|
description = "$STR_ACE_Explosive_PunishNonSpecialists_Description";
|
|
typeName = "BOOL";
|
|
defaultValue = 1;
|
|
};
|
|
};
|
|
class ModuleDescription: ModuleDescription {
|
|
description = "$STR_ACE_Explosive_Module_Description";
|
|
};
|
|
}; |