mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5a3f3d3b82
Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: jonpas <jonpas33@gmail.com>
28 lines
832 B
C++
28 lines
832 B
C++
#include "script_component.hpp"
|
|
#include "\z\ace\addons\refuel\defines.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {
|
|
"CABuildings",
|
|
"CAStructuresHouse_A_FuelStation",
|
|
"CAStructures_E_Ind_Ind_FuelStation",
|
|
"CAStructures_PMC_FuelStation",
|
|
"CUP_Buildings_Config",
|
|
"ace_refuel" // not a sub-component because it's all this compat does
|
|
};
|
|
skipWhenMissingDependencies = 1;
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"Community Upgrade Project", "Mike"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgVehicles.hpp"
|
|
#include "CfgEventHandlers.hpp"
|