mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e5a49f3acf
* autoload RHS USAF compat * whoops * fix filepatching builds * pboProject pls * add ONE semicolon. * remove meta.cpp * add AFRF, move stringtables * add addon.toml * stringtable validation * change subconfig folder names for stringtables * macros * sigh * macros Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com> * add SAF compat * missing file * config brackets * Update addons/compat_rhs_afrf3/compat_rhs_afrf3_explosives/config.cpp Co-authored-by: PabstMirror <pabstmirror@gmail.com> * Update addons/compat_rhs_usf3/compat_rhs_usf3_csw/CfgVehicles.hpp Co-authored-by: PabstMirror <pabstmirror@gmail.com> * capitalization Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com> * fix double class * gref and fastroping * fix functions * Update CfgVehicles.hpp --------- Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com>
31 lines
659 B
C++
31 lines
659 B
C++
#include "script_component.hpp"
|
|
|
|
#if __has_include("\rhssaf\addons\rhssaf_main\loadorder\config.bin")
|
|
#else
|
|
#define PATCH_SKIP "RHS SAF"
|
|
#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[] = {"rhssaf_main_loadorder"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {};
|
|
url = ECSTRING(main,URL);
|
|
skipWhenMissingDependencies = 1;
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgAmmo.hpp"
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#endif
|