mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
11 lines
443 B
C++
11 lines
443 B
C++
|
#define EQUIP_FRIES_ATTRIBUTE class EGVAR(fastroping,equipFRIES) { \
|
||
|
property = QEGVAR(fastroping,equipFRIES); \
|
||
|
control = "Checkbox"; \
|
||
|
displayName = ECSTRING(fastroping,Eden_equipFRIES); \
|
||
|
tooltip = ECSTRING(fastroping,Eden_equipFRIES_Tooltip); \
|
||
|
expression = QUOTE(if (_value) then {[_this] call EFUNC(fastroping,equipFRIES)}); \
|
||
|
typeName = "BOOL"; \
|
||
|
condition = "objectVehicle"; \
|
||
|
defaultValue = false; \
|
||
|
}
|