mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
0e1f2828a9
* Rename Advanced Throwing component to be in-line with other advanced_ components * Rename wiki page as well * Add redirect from old wiki page
41 lines
1.3 KiB
C++
41 lines
1.3 KiB
C++
class ACE_Settings {
|
|
class GVAR(enabled) {
|
|
category = CSTRING(Category);
|
|
displayName = CSTRING(Enable_DisplayName);
|
|
description = CSTRING(Enable_Description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
isClientSettable = 1;
|
|
};
|
|
class GVAR(showThrowArc) {
|
|
category = CSTRING(Category);
|
|
displayName = CSTRING(ShowThrowArc_DisplayName);
|
|
description = CSTRING(ShowThrowArc_Description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
isClientSettable = 1;
|
|
};
|
|
class GVAR(showMouseControls) {
|
|
category = CSTRING(Category);
|
|
displayName = CSTRING(ShowMouseControls_DisplayName);
|
|
description = CSTRING(ShowMouseControls_Description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
isClientSettable = 1;
|
|
};
|
|
class GVAR(enablePickUp) {
|
|
category = CSTRING(Category);
|
|
displayName = CSTRING(EnablePickUp_DisplayName);
|
|
description = CSTRING(EnablePickUp_Description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
class GVAR(enablePickUpAttached) {
|
|
category = CSTRING(Category);
|
|
displayName = CSTRING(EnablePickUpAttached_DisplayName);
|
|
description = CSTRING(EnablePickUpAttached_Description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
};
|