ACE3/addons/winddeflection/config.cpp

28 lines
626 B
C++
Raw Normal View History

#include "script_component.hpp"
class CfgPatches {
2015-02-03 20:47:25 +00:00
class ADDON {
2016-06-19 07:12:25 +00:00
name = COMPONENT_NAME;
2015-02-03 20:47:25 +00:00
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_weather"};
author = ECSTRING(common,ACETeam);
authors[] = {ECSTRING(common,ACETeam), "Glowbal", "Ruthberg"};
url = ECSTRING(main,URL);
2015-05-09 16:55:00 +00:00
VERSION_CONFIG;
2015-02-03 20:47:25 +00:00
};
};
2015-01-28 17:51:27 +00:00
class CfgAddons {
class PreloadAddons {
class ADDON {
list[] = {QUOTE(ADDON)};
};
};
};
2015-03-12 05:18:18 +00:00
#include "CfgEventHandlers.hpp"
2015-03-23 19:02:35 +00:00
#include "CfgVehicles.hpp"
2015-08-19 02:18:33 +00:00
#include "ACE_Settings.hpp"