2015-02-11 01:55:53 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2015-02-11 01:55:53 +00:00
|
|
|
units[] = {};
|
|
|
|
weapons[] = {"ACE_DebugPotato"};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2019-03-21 13:52:32 +00:00
|
|
|
requiredAddons[] = {"ace_interaction"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"PabstMirror"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-02-11 01:55:53 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
|
2015-02-23 00:44:33 +00:00
|
|
|
#include "gui_disarm.hpp"
|