mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
7cf52d13ca
Fixed newline characters
24 lines
496 B
C++
24 lines
496 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[] = {"Disabled", "Partially", "Fully"};
|
|
};
|
|
};
|