2015-01-13 17:05:05 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-12 22:36:04 +00:00
|
|
|
class CfgPatches {
|
2015-02-03 20:47:25 +00:00
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-04-09 11:23:29 +00:00
|
|
|
requiredAddons[] = {"ace_weather"};
|
2015-02-03 20:47:25 +00:00
|
|
|
versionDesc = "ACE Wind Deflection";
|
2015-02-14 05:09:52 +00:00
|
|
|
author[] = {$STR_ACE_Common_ACETeam, "Glowbal", "Ruthberg"};
|
2015-02-03 20:47:25 +00:00
|
|
|
authorUrl = "http://csemod.com";
|
2015-05-09 16:55:00 +00:00
|
|
|
VERSION_CONFIG;
|
2015-02-03 20:47:25 +00:00
|
|
|
};
|
2015-01-12 22:36:04 +00:00
|
|
|
};
|
|
|
|
|
2015-01-28 17:51:27 +00:00
|
|
|
class CfgAddons {
|
2015-01-12 22:36:04 +00:00
|
|
|
class PreloadAddons {
|
2015-01-13 17:05:05 +00:00
|
|
|
class ADDON {
|
|
|
|
list[] = {QUOTE(ADDON)};
|
2015-01-12 22:36:04 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2015-01-13 17:05:05 +00:00
|
|
|
|
2015-03-12 05:18:18 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-03-23 19:02:35 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2015-04-12 10:33:09 +00:00
|
|
|
#include "ACE_Settings.hpp"
|