mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
606 B
C++
31 lines
606 B
C++
|
class CfgAmmo {
|
||
|
|
||
|
// seems to not get inherited
|
||
|
class Default;
|
||
|
class TimeBombCore: Default {
|
||
|
GVAR(detectable) = 1;
|
||
|
};
|
||
|
|
||
|
// these below do get inherited
|
||
|
class DirectionalBombCore;
|
||
|
class DirectionalBombBase: DirectionalBombCore {
|
||
|
GVAR(detectable) = 1;
|
||
|
};
|
||
|
|
||
|
class BoundingMineCore;
|
||
|
class BoundingMineBase: BoundingMineCore {
|
||
|
GVAR(detectable) = 1;
|
||
|
};
|
||
|
|
||
|
class MineCore;
|
||
|
class MineBase: MineCore {
|
||
|
GVAR(detectable) = 1;
|
||
|
};
|
||
|
|
||
|
class PipeBombCore;
|
||
|
class PipeBombBase: PipeBombCore {
|
||
|
GVAR(detectable) = 1;
|
||
|
};
|
||
|
|
||
|
};
|