mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
765d36b4bc
* Add missing author strings * Fix dagr author entry
17 lines
453 B
C++
17 lines
453 B
C++
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_MapTools: ACE_ItemCore {
|
|
displayName = CSTRING(Name);
|
|
author = ECSTRING(common,ACETeam);
|
|
descriptionShort = CSTRING(Description);
|
|
model = QPATHTOF(data\ace_MapTools.p3d);
|
|
picture = QPATHTOF(UI\maptool_item.paa);
|
|
scope = 2;
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 1;
|
|
};
|
|
};
|
|
};
|