mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
class ACE_Module;
|
|
class ACE_ModuleExplosive: ACE_Module {
|
|
author = ECSTRING(common,ACETeam);
|
|
category = "ACE";
|
|
displayName = CSTRING(Module_DisplayName);
|
|
function = QUOTE(FUNC(module));
|
|
scope = 2;
|
|
isGlobal = 1;
|
|
icon = PATHTOF(UI\Icon_Module_Explosives_ca.paa);
|
|
class Arguments {
|
|
class RequireSpecialist {
|
|
displayName = CSTRING(RequireSpecialist_DisplayName);
|
|
description = CSTRING(RequireSpecialist_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
class PunishNonSpecialists {
|
|
displayName = CSTRING(PunishNonSpecialists_DisplayName);
|
|
description = CSTRING(PunishNonSpecialists_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 1;
|
|
};
|
|
class ExplodeOnDefuse {
|
|
displayName = "$STR_ACE_Explosive_ExplodeOnDefuse_DisplayName";
|
|
description = "$STR_ACE_Explosive_ExplodeOnDefuse_Description";
|
|
typeName = "BOOL";
|
|
defaultValue = 1;
|
|
};
|
|
};
|
|
class ModuleDescription {
|
|
description = CSTRING(Module_Description);
|
|
};
|
|
};
|