mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
043b3907fe
Co-authored-by: Pepijn Holster <pgaholster@gmail.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: LorenLuke <LukeLLL@aol.com> Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
38 lines
810 B
C++
38 lines
810 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {"ACE_artilleryTable"};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_interaction"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"PabstMirror"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgMagazines.hpp"
|
|
#include "CfgVehicles.hpp"
|
|
#include "CfgWeapons.hpp"
|
|
|
|
|
|
// Common UI Stuff:
|
|
class RscText;
|
|
class RscListBox;
|
|
class RscListNBox;
|
|
class RscPicture;
|
|
class RscControlsGroup;
|
|
class RscControlsGroupNoScrollbars;
|
|
class ScrollBar;
|
|
class RscActiveText;
|
|
class RscStructuredText;
|
|
class ctrlButton;
|
|
|
|
#include "RscTitles.hpp"
|
|
#include "RscRangeTable.hpp"
|
|
|