mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
17 lines
412 B
C++
17 lines
412 B
C++
class ACE_Settings {
|
|
class GVAR(RequireSpecialist) {
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
};
|
|
class GVAR(PunishNonSpecialists) {
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
};
|
|
class GVAR(ExplodeOnDefuse) {
|
|
displayName = CSTRING(ExplodeOnDefuse_DisplayName);
|
|
description = CSTRING(ExplodeOnDefuse_Description);
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
};
|
|
};
|