mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a7d8c3eb3a
* Move SOG compat to addons/ * Set component to skip loading when SOG not present * Use skipWhenMissingDependencies for GRAD Trenches compatiblity * Tools - Add SOG dlc launch config * move trenches to sub config, handle grad with 2nd subconfig * fix `Land_vn_b_prop_fueldrum_01` UBC * use ifndef --------- Co-authored-by: PabstMirror <pabstmirror@gmail.com>
16 lines
466 B
C++
16 lines
466 B
C++
// F-4 - https://en.wikipedia.org/wiki/McDonnell_Douglas_F-4_Phantom_II
|
|
class Plane_Base_F;
|
|
class vn_air_f4_base: Plane_Base_F {
|
|
EGVAR(refuel,fuelCapacity) = 7548;
|
|
};
|
|
|
|
// F-100D https://www.supersabre.com/f-100specs.htm
|
|
class vn_air_f100d_base: Plane_Base_F {
|
|
EGVAR(refuel,fuelCapacity) = 4500;
|
|
};
|
|
|
|
// MIG-19S https://en.wikipedia.org/wiki/Mikoyan-Gurevich_MiG-19#cite_ref-60
|
|
class vn_air_mig19_base: Plane_Base_F {
|
|
EGVAR(refuel,fuelCapacity) = 1800;
|
|
};
|