ACE3/addons/iron_dome/config.cpp

20 lines
527 B
C++
Raw Normal View History

2021-05-18 06:32:55 +00:00
#include "script_component.hpp"
class CfgPatches {
class ADDON {
name = COMPONENT_NAME;
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
2021-05-19 03:32:04 +00:00
// no point having this system without missile guidance: nothing would happen
requiredAddons[] = {"ace_common","ace_missileguidance"};
2021-05-18 06:32:55 +00:00
author = ECSTRING(common,ACETeam);
authors[] = {"Brandon (TCVM)"};
url = ECSTRING(main,URL);
VERSION_CONFIG;
};
};
#include "CfgEventHandlers.hpp"
2021-05-19 03:32:04 +00:00