2015-05-16 13:28:59 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
2015-07-15 03:51:13 +00:00
|
|
|
author[] = {"VKing", "Jonpas"};
|
2015-08-19 02:18:33 +00:00
|
|
|
authorUrl = "http://ace3mod.com/";
|
2015-05-16 13:28:59 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-07-15 03:51:13 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "ACE_Settings.hpp"
|
2015-05-16 13:28:59 +00:00
|
|
|
|
2015-07-15 03:51:13 +00:00
|
|
|
#include "RscChat.hpp"
|
|
|
|
#include "RscVignette.hpp"
|
2016-05-24 13:13:11 +00:00
|
|
|
|
|
|
|
class ACE_newEvents {
|
|
|
|
SettingsInitialized = "ace_settingsInitialized";
|
2016-05-24 14:06:17 +00:00
|
|
|
};
|