mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
93b7722716
* General - Cleanup CfgPatches unit/weapon arrays add test tool fix refuel pump fix flashlight pistol transport type fix iDAB reammo box * Update config.cpp
27 lines
640 B
C++
27 lines
640 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;
|
|
};
|
|
|
|
class XADDON: ADDON {
|
|
units[] = {};
|
|
weapons[] = {};
|
|
};
|
|
};
|
|
|
|
#include "Cfg3DEN.hpp"
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgVehicles.hpp"
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "ACEX_Fortify_Presets.hpp"
|