2023-09-06 00:33:13 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
2023-09-12 18:40:38 +00:00
|
|
|
class SUBADDON {
|
|
|
|
name = COMPONENT_NAME;
|
2023-09-06 00:33:13 +00:00
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {
|
|
|
|
"gm_core",
|
|
|
|
"ace_refuel"
|
|
|
|
};
|
|
|
|
skipWhenMissingDependencies = 1;
|
2023-09-12 18:40:38 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {};
|
|
|
|
url = ECSTRING(main,URL);
|
2023-09-06 00:33:13 +00:00
|
|
|
VERSION_CONFIG;
|
2023-09-12 18:40:38 +00:00
|
|
|
|
|
|
|
addonRootClass = QUOTE(ADDON);
|
2023-09-06 00:33:13 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
2024-08-22 03:49:06 +00:00
|
|
|
#include "CfgVehicles.hpp"
|