ACE3/addons/grenades/config.cpp

35 lines
908 B
C++
Raw Normal View History

2015-01-14 09:06:47 +00:00
#include "script_component.hpp"
class CfgPatches {
class ADDON {
2016-06-19 07:12:25 +00:00
name = COMPONENT_NAME;
units[] = {};
2016-07-13 22:01:14 +00:00
weapons[] = {
"ACE_HandFlare_White",
"ACE_HandFlare_Red",
"ACE_HandFlare_Green",
"ACE_HandFlare_Yellow",
"ACE_M84",
2019-03-09 18:36:51 +00:00
"ACE_M14",
"ACE_CTS9",
"ACE_SatchelCharge_Remote_Mag_Throwable",
"ACE_DemoCharge_Remote_Mag_Throwable"
2016-07-13 22:01:14 +00:00
};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common"};
author = ECSTRING(common,ACETeam);
2016-07-13 22:01:14 +00:00
authors[] = {"commy2","KoffeinFlummi"};
url = ECSTRING(main,URL);
VERSION_CONFIG;
};
};
2015-01-14 09:06:47 +00:00
#include "CfgEventHandlers.hpp"
#include "CfgAmmo.hpp"
#include "CfgWeapons.hpp"
#include "CfgMagazines.hpp"
#include "CfgMagazineWells.hpp"
2015-01-14 09:06:47 +00:00
#include "CfgVehicles.hpp"
2015-09-01 10:46:15 +00:00
#include "Effects.hpp"