mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
655 B
C++
22 lines
655 B
C++
|
class EGVAR(arsenal,stats) {
|
||
|
class statBase;
|
||
|
class ACE_allowSwapBarrel: statBase {
|
||
|
scope = 2;
|
||
|
priority = -1;
|
||
|
stats[] = {QGVAR(allowSwapBarrel)};
|
||
|
displayName = CSTRING(statBarrelType);
|
||
|
showText = 1;
|
||
|
textStatement = QUOTE(call FUNC(statTextStatement_allowSwapBarrel));
|
||
|
tabs[] = {{0,1}, {}};
|
||
|
};
|
||
|
class ACE_boltType: statBase {
|
||
|
scope = 2;
|
||
|
priority = -1.1;
|
||
|
stats[] = {QGVAR(closedBolt)};
|
||
|
displayName = CSTRING(statBoltType);
|
||
|
showText = 1;
|
||
|
textStatement = QUOTE(call FUNC(statTextStatement_boltType));
|
||
|
tabs[] = {{0,1}, {}};
|
||
|
};
|
||
|
};
|