mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
1a1fdb7c2c
* Move the hellfire hud to the laser module * Fix example
19 lines
547 B
C++
19 lines
547 B
C++
class EGVAR(missileguidance,AttackProfiles) {
|
|
class hellfire {
|
|
name = "LOAL-DIR";
|
|
nameLocked = "LOBL";
|
|
functionName = QFUNC(attackProfile);
|
|
GVAR(launchHeightClear) = 0;
|
|
};
|
|
class hellfire_hi: hellfire {
|
|
name = "LOAL-HI";
|
|
nameLocked = "LOAL-HI";
|
|
GVAR(launchHeightClear) = 304.8; // clear 1000 ft by 1500m
|
|
};
|
|
class hellfire_lo: hellfire_hi {
|
|
name = "LOAL-LO";
|
|
nameLocked = "LOAL-LO";
|
|
GVAR(launchHeightClear) = 91.5; // clear 300 ft by 600m
|
|
};
|
|
};
|