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>
15 lines
330 B
C++
15 lines
330 B
C++
class vn_b_men_aircrew_base;
|
|
class vn_b_men_jetpilot_01: vn_b_men_aircrew_base {
|
|
ACE_GForceCoef = 0.55;
|
|
};
|
|
|
|
class vn_o_men_aircrew_01;
|
|
class vn_o_men_aircrew_05: vn_o_men_aircrew_01 {
|
|
ACE_GForceCoef = 0.55;
|
|
};
|
|
|
|
class vn_i_men_aircrew_base;
|
|
class vn_i_men_jetpilot_01: vn_i_men_aircrew_base {
|
|
ACE_GForceCoef = 0.55;
|
|
};
|