mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
607 B
C++
24 lines
607 B
C++
|
|
class ACE_Settings {
|
|
class GVAR(allow) {
|
|
displayName = CSTRING(allow);
|
|
description = CSTRING(allow_Descr);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
class GVAR(useMenu) {
|
|
displayName = CSTRING(useMenu);
|
|
description = CSTRING(useMenu_Descr);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
isClientSettable = 1;
|
|
};
|
|
class GVAR(openAfterTreatment) {
|
|
displayName = CSTRING(openAfterTreatment);
|
|
description = CSTRING(openAfterTreatment_Descr);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
isClientSettable = 1;
|
|
};
|
|
};
|