mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
521 B
C++
22 lines
521 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class SUBADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {
|
|
"data_f_lxWS_Loadorder",
|
|
"ace_nouniformrestrictions"
|
|
};
|
|
skipWhenMissingDependencies = 1;
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"Mike"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgVehicles.hpp"
|