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>
26 lines
697 B
C++
26 lines
697 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_common"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"alganthe", "mharis001", "Brett Mayson", "johnb43"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "ui\RscAttributes.hpp"
|
|
#include "ui\RscCustomArsenalButton.hpp"
|
|
#include "Display3DEN.hpp"
|
|
#include "Cfg3DEN.hpp"
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgWeapons.hpp"
|
|
#include "RscDisplayMain.hpp"
|
|
#include "ACE_Arsenal_Sorts.hpp"
|
|
#include "ACE_Arsenal_Stats.hpp"
|