mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
18 lines
711 B
C++
18 lines
711 B
C++
|
class ACE_Settings {
|
||
|
class GVAR(movableMarkersEnabled) {
|
||
|
category = CSTRING(Module_DisplayName);
|
||
|
value = 0;
|
||
|
typeName = "BOOL";
|
||
|
displayName = CSTRING(MovableMarkers_DisplayName);
|
||
|
description = CSTRING(MovableMarkers_Description);
|
||
|
};
|
||
|
class GVAR(moveRestriction) {
|
||
|
category = CSTRING(Module_DisplayName);
|
||
|
value = 0;
|
||
|
typeName = "SCALAR";
|
||
|
displayName = CSTRING(MoveRestriction_DisplayName);
|
||
|
description = CSTRING(MoveRestriction_Description);
|
||
|
values[] = {CSTRING(MoveRestriction_All), CSTRING(MoveRestriction_Admins), CSTRING(MoveRestriction_GroupLeaders), CSTRING(MoveRestriction_GroupLeadersAndAdmins)};
|
||
|
};
|
||
|
};
|