mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5e65e56c5e
* Fix dependencies list on wiki * laser-guided Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com> * Update docs/wiki/feature/xm157.md Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Moved medical_menu to medical-gui --------- Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com>
18 lines
470 B
C++
18 lines
470 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_main"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"Dystopian"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
ACE_expectedModDir = "@ACE No Medical";
|
|
ACE_expectedSteamID = "3053169823";
|
|
};
|
|
};
|