mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
3c7ac5a3e4
* Fix medical blood locality / bleeding in vehicles - Fix ace_setting - Don't run on headless if enabledFor = 1 - Don't create blood for non-local units - Don't create blood when mounted (except static weapons) * Add readme
19 lines
456 B
C++
19 lines
456 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[] = {"Glowbal","Sickboy","commy2"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "ACE_Settings.hpp"
|
|
#include "CfgEventHandlers.hpp"
|