mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
dcc934202b
* Single global on/off switch (that really turns everything off properly) * Less coupling between code that runs on the client / server * Simpler update routines * More cohesive code * Less module options * Less network traffic
21 lines
618 B
C++
21 lines
618 B
C++
class ACE_Settings {
|
|
class GVAR(enabled) {
|
|
displayName = CSTRING(enabled_DisplayName);
|
|
description = CSTRING(enabled_Description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
class GVAR(updateInterval) {
|
|
displayName = CSTRING(updateInterval_DisplayName);
|
|
description = CSTRING(updateInterval_Description);
|
|
typeName = "SCALAR";
|
|
value = 60;
|
|
};
|
|
class GVAR(windSimulation) {
|
|
displayName = CSTRING(windSimulation_DisplayName);
|
|
description = CSTRING(windSimulation_Description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
};
|