mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
18 lines
439 B
C++
18 lines
439 B
C++
class ACE_Settings {
|
|
//Time to move a round from one magazine to another
|
|
class GVAR(TimePerAmmo) {
|
|
value = 1.5;
|
|
typeName = "SCALAR";
|
|
};
|
|
//Time to swap between magazines when repacking
|
|
class GVAR(TimePerMagazine) {
|
|
value = 2.0;
|
|
typeName = "SCALAR";
|
|
};
|
|
//Time to relink 2 belts together
|
|
class GVAR(TimePerBeltLink) {
|
|
value = 8.0;
|
|
typeName = "SCALAR";
|
|
};
|
|
};
|