mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
12 lines
307 B
C++
12 lines
307 B
C++
|
class ACE_Triggers {
|
||
|
class Command;
|
||
|
class GVAR(Command): Command {
|
||
|
isAttachable = 0;
|
||
|
};
|
||
|
|
||
|
class MK16_Transmitter: Command {}; // define parent class to make this a soft depency on ACE Explosives
|
||
|
class GVAR(MK16_Transmitter): MK16_Transmitter {
|
||
|
isAttachable = 0;
|
||
|
};
|
||
|
};
|