mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
585 B
C++
24 lines
585 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
units[] = {QXGVAR(setupModule), QXGVAR(buildLocationModule)};
|
|
weapons[] = {"ACE_Fortify"};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_interaction"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"Kingsley"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
|
|
BWC_CONFIG(XADDON);
|
|
};
|
|
|
|
#include "Cfg3DEN.hpp"
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgVehicles.hpp"
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "ACEX_Fortify_Presets.hpp"
|