mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31e1ad0cff
* add tools tab and setting * move to preinit * fix icon, add restart warning * derp Co-authored-by: Dystopian <sddex@ya.ru> * Update addons/arsenal/stringtable.xml Co-authored-by: PabstMirror <pabstmirror@gmail.com> * remove setting * add keepIfOverriden parameter * docs again * documentation whitespace * docs grammar, change parameter name * fix docs * more docs fixes * magazine support * deprecate spare barrel item * more docs, improve condition --------- Co-authored-by: Dystopian <sddex@ya.ru> Co-authored-by: PabstMirror <pabstmirror@gmail.com>
11 lines
239 B
C++
11 lines
239 B
C++
class CfgWeapons {
|
|
class ItemCore;
|
|
class ToolKit: ItemCore {
|
|
ACE_isTool = 1; // sort in Tools Tab
|
|
};
|
|
class DetectorCore;
|
|
class MineDetector: DetectorCore {
|
|
ACE_isTool = 1; // sort in Tools Tab
|
|
};
|
|
};
|