mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
15 lines
390 B
C++
15 lines
390 B
C++
|
class EGVAR(missileguidance,AttackProfiles) {
|
||
|
class GVAR(directAttack) {
|
||
|
name = CSTRING(directAttack);
|
||
|
functionName = QFUNC(attackProfile);
|
||
|
};
|
||
|
class GVAR(overflyTopAttack): GVAR(directAttack) {
|
||
|
name = CSTRING(overflyTopAttack);
|
||
|
};
|
||
|
};
|
||
|
class EGVAR(missileguidance,SeekerTypes) {
|
||
|
class GVAR(seeker) {
|
||
|
functionName = QFUNC(seeker);
|
||
|
};
|
||
|
};
|