ACE3/addons/pylons/ACE_Settings.hpp

45 lines
1.4 KiB
C++
Raw Normal View History

class ACE_Settings {
class GVAR(enabled) {
category = CSTRING(Category_Pylons);
displayName = CSTRING(Enabled);
description = CSTRING(Enabled_description);
value = 1;
typeName = "BOOL";
};
class GVAR(rearmNewPylons) {
category = CSTRING(Category_Pylons);
displayName = CSTRING(RearmNewPylons);
description = CSTRING(RearmNewPylons_description);
value = 0;
typeName = "BOOL";
};
class GVAR(searchDistance) {
category = CSTRING(Category_Pylons);
displayName = CSTRING(SearchDistance);
description = CSTRING(SearchDistance_description);
value = 15;
typeName = "SCALAR";
};
class GVAR(timePerPylon) {
category = CSTRING(Category_Pylons);
displayName = CSTRING(TimePerPylon);
description = CSTRING(TimePerPylon_description);
value = 5;
typeName = "SCALAR";
};
class GVAR(requireEngineer) {
category = CSTRING(Category_Pylons);
displayName = CSTRING(RequireEngineer);
description = CSTRING(RequireEngineer_description);
value = 0;
typeName = "BOOL";
};
class GVAR(requireToolkit) {
category = CSTRING(Category_Pylons);
displayName = CSTRING(RequireToolkit);
description = CSTRING(RequireToolkit_description);
value = 1;
typeName = "BOOL";
};
};