ACE3/addons/zeus/ACE_Settings.hpp
SilentSpike d90d5a7ac1 Rewrite global AI skill zeus module
Remove the use of ace settings and makes the module more zeus specific. It might be worth adding a similar module or mission settings to ace_ai for mission editing.
2016-05-16 15:16:53 +01:00

30 lines
742 B
C++

class ACE_Settings {
class GVAR(zeusAscension) {
typeName = "BOOL";
value = 0;
};
class GVAR(zeusBird) {
typeName = "BOOL";
value = 0;
};
class GVAR(remoteWind) {
typeName = "BOOL";
value = 0;
};
class GVAR(radioOrdnance) {
typeName = "BOOL";
value = 0;
};
class GVAR(revealMines) {
typeName = "SCALAR";
value = 0;
values[] = {"$STR_A3_OPTIONS_DISABLED", CSTRING(revealMines_partial), CSTRING(revealMines_full)};
};
class GVAR(autoAddObjects) {
displayName = CSTRING(AddObjectsToCurator);
description = CSTRING(AddObjectsToCurator_desc);
value = 0;
typeName = "BOOL";
};
};