ACE3/addons/huntir/CfgWeapons.hpp

24 lines
611 B
C++
Raw Normal View History

2015-06-06 12:13:34 +00:00
class CfgWeapons {
class ACE_ItemCore;
class CBA_MiscItem_ItemInfo;
2016-05-03 00:32:44 +00:00
2015-06-06 12:13:34 +00:00
class ACE_HuntIR_monitor: ACE_ItemCore {
scope = 2;
2015-06-10 16:10:12 +00:00
displayName = CSTRING(monitor_displayName);
2016-04-08 18:34:50 +00:00
picture = QPATHTOF(UI\w_huntir_monitor_ca.paa);
2015-06-10 16:10:12 +00:00
descriptionShort = CSTRING(monitor_displayName);
2016-04-08 18:34:50 +00:00
model = QPATHTOF(data\ace_huntir_monitor.p3d);
2015-06-06 12:13:34 +00:00
class ItemInfo: CBA_MiscItem_ItemInfo {
2015-06-06 12:13:34 +00:00
mass = 20;
};
};
2016-05-03 00:32:44 +00:00
2015-06-06 12:13:34 +00:00
class GrenadeLauncher;
class UGL_F: GrenadeLauncher {
2015-06-07 09:58:56 +00:00
magazines[] += {"ACE_HuntIR_M203"};
2015-06-06 12:13:34 +00:00
};
// Added to the GL_3GL_F in subconfig
2015-06-06 12:13:34 +00:00
};