ACE3/addons/hot/config.cpp

22 lines
503 B
C++
Raw Normal View History

2016-05-30 16:37:03 +00:00
#include "script_component.hpp"
class CfgPatches {
class ADDON {
2016-06-19 07:12:25 +00:00
name = COMPONENT_NAME;
2016-05-30 16:37:03 +00:00
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
2024-05-27 23:40:24 +00:00
requiredAddons[] = {"ace_common","ace_missileguidance"};
author = ECSTRING(common,ACETeam);
2024-05-27 23:41:23 +00:00
authors[] = {"tcvm"};
url = ECSTRING(main,URL);
2016-05-30 16:37:03 +00:00
VERSION_CONFIG;
};
};
2024-05-27 23:40:24 +00:00
#include "CfgAmmo.hpp"
#include "CfgMagazines.hpp"
2016-05-30 16:37:03 +00:00
#include "CfgWeapons.hpp"
#include "CfgVehicles.hpp"
2024-05-27 23:40:24 +00:00