ACE3/addons/slideshow/CfgVehicles.hpp

50 lines
1.7 KiB
C++
Raw Normal View History

2015-06-27 02:11:57 +00:00
class CfgVehicles {
class ACE_Module;
class GVAR(module): ACE_Module {
author = ECSTRING(common,ACETeam);
category = "ACE_missionModules";
displayName = CSTRING(DisplayName);
function = QFUNC(moduleInit);
scope = 2;
isGlobal = 1;
2015-06-27 02:11:57 +00:00
isTriggerActivated = 0;
isDisposable = 0;
2015-06-29 19:22:59 +00:00
icon = QUOTE(PATHTOF(UI\Icon_Module_Slideshow_ca.paa));
2015-06-27 02:11:57 +00:00
class Arguments {
class Objects {
displayName = CSTRING(Objects_DisplayName);
description = CSTRING(Objects_Description);
typeName = "STRING";
defaultValue = "";
};
class Controllers {
displayName = CSTRING(Controllers_DisplayName);
description = CSTRING(Controllers_Description);
typeName = "STRING";
defaultValue = "";
};
class Images {
displayName = CSTRING(Images_DisplayName);
description = CSTRING(Images_Description);
typeName = "STRING";
defaultValue = "";
};
class Names {
displayName = CSTRING(Names_DisplayName);
description = CSTRING(Names_Description);
typeName = "STRING";
defaultValue = "";
};
class Duration {
displayName = CSTRING(Duration_DisplayName);
description = CSTRING(Duration_Description);
typeName = "NUMBER";
defaultValue = 0;
};
2015-06-27 02:11:57 +00:00
};
class ModuleDescription {
description = CSTRING(Description);
};
};
};