mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
b77324ec58
* added medical, food and roleplay categories to arsenal * decreased wound stitch time * added custom rightPanelButtons * stuff that doesnt belong here * fix * commys wishes * commys wishes part2 * Update addons/arsenal/defines.hpp Co-Authored-By: Dedmen Miller <dedmen@users.noreply.github.com> * Update addons/arsenal/functions/fnc_fillRightPanel.sqf Co-Authored-By: Dedmen Miller <dedmen@users.noreply.github.com> * Update addons/arsenal/functions/fnc_fillRightPanel.sqf Co-Authored-By: Dedmen Miller <dedmen@users.noreply.github.com> * infinitely better SPEED * changes * delete unused stuff * my own 3 white dots * fixed fillRightPanel IDC_MISC * commy fixes * background first Co-authored-by: Schwaggot <tom.ryan@posteo.de> Co-authored-by: Dedmen Miller <dedmen@users.noreply.github.com>
24 lines
611 B
C++
24 lines
611 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"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "ui\RscAttributes.hpp"
|
|
#include "ui\RscCustomArsenalButton.hpp"
|
|
#include "Display3DEN.hpp"
|
|
#include "Cfg3DEN.hpp"
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "RscDisplayMain.hpp"
|
|
#include "ACE_Arsenal_Stats.hpp"
|