mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
fbe23ee45f
* Optionals - Load dynamically * Update XEH_preStart.sqf * Update pboproject.yml * Update script_macros.hpp * use addon.toml for hemtt * Update pboproject.yml * update all actions ref Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/upload-artifact@v2. * Update arma.yml * Update arma.yml * Update arma.yml * Update arma.yml * Update arma.yml * Update arma.yml * Apply suggestions from code review Co-authored-by: Björn Dahlgren <bjorn@dahlgren.io> * Update settings.json * cleanup interm hemtt changes * Update .github/workflows/arma.yml * Apply suggestions from code review Co-authored-by: jonpas <jonpas33@gmail.com> --------- Co-authored-by: Björn Dahlgren <bjorn@dahlgren.io> Co-authored-by: jonpas <jonpas33@gmail.com>
28 lines
584 B
C++
28 lines
584 B
C++
#include "script_component.hpp"
|
|
|
|
#if __has_include("\lxWS\data_f_lxWS\config.bin")
|
|
#else
|
|
#define PATCH_SKIP "Western Sahara"
|
|
#endif
|
|
|
|
#ifdef PATCH_SKIP
|
|
ACE_PATCH_NOT_LOADED(ADDON,PATCH_SKIP)
|
|
#else
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"data_f_lxWS_Loadorder"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"Mike"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#endif
|