mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
749 B
C++
24 lines
749 B
C++
class CfgWeapons {
|
|
class GrenadeLauncher;
|
|
|
|
class Throw: GrenadeLauncher {
|
|
muzzles[] += {"ACE_HandFlare_WhiteMuzzle", "ACE_HandFlare_RedMuzzle", "ACE_HandFlare_GreenMuzzle", "ACE_HandFlare_YellowMuzzle", "ACE_M84Muzzle"};
|
|
class ThrowMuzzle;
|
|
class ACE_HandFlare_WhiteMuzzle: ThrowMuzzle {
|
|
magazines[] = {"ACE_HandFlare_White"};
|
|
};
|
|
class ACE_HandFlare_RedMuzzle: ThrowMuzzle {
|
|
magazines[] = {"ACE_HandFlare_Red"};
|
|
};
|
|
class ACE_HandFlare_GreenMuzzle: ThrowMuzzle {
|
|
magazines[] = {"ACE_HandFlare_Green"};
|
|
};
|
|
class ACE_HandFlare_YellowMuzzle: ThrowMuzzle {
|
|
magazines[] = {"ACE_HandFlare_Yellow"};
|
|
};
|
|
class ACE_M84Muzzle: ThrowMuzzle {
|
|
magazines[] = {"ACE_M84"};
|
|
};
|
|
};
|
|
};
|