ACE3/addons/medical/config.cpp

23 lines
1.2 KiB
C++
Raw Normal View History

#include "script_component.hpp"
2015-02-03 19:09:25 +00:00
class CfgPatches {
class ADDON {
2015-03-09 21:36:25 +00:00
units[] = {QGVAR(fieldDressingItem), QGVAR(packingBandageItem), QGVAR(elasticBandageItem), QGVAR(tourniquetItem), QGVAR(morphineItem), QGVAR(atropineItem), QGVAR(epinephrineItem), QGVAR(plasmaIVItem), QGVAR(bloodIVItem), QGVAR(salineIVItem), QGVAR(quikclotItem), QGVAR(personalAidKitItem), QGVAR(surgicalKitItem), QGVAR(bodyBagItem)};
weapons[] = {QGVAR(fieldDressing), QGVAR(packingBandage), QGVAR(elasticBandage), QGVAR(tourniquet), QGVAR(morphine), QGVAR(atropine), QGVAR(epinephrine), QGVAR(plasmaIV), QGVAR(plasmaIV_500), QGVAR(plasmaIV_250), QGVAR(bloodIV), QGVAR(bloodIV_500), QGVAR(bloodIV_250), QGVAR(salineIV), QGVAR(salineIV_500), QGVAR(salineIV_250), QGVAR(quikclot), QGVAR(personalAidKit), QGVAR(surgicalKit), QGVAR(bodyBag)};
2015-02-03 19:09:25 +00:00
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {ace_common, ace_interaction};
2015-02-21 20:09:57 +00:00
author[] = {"Glowbal", "KoffienFlummi"};
2015-02-03 19:09:25 +00:00
authorUrl = "";
VERSION_CONFIG;
};
};
#include "CfgEventHandlers.hpp"
2015-03-06 21:54:44 +00:00
#include "CfgFactionClasses.hpp"
2015-02-06 12:47:17 +00:00
#include "CfgVehicles.hpp"
2015-02-28 19:46:36 +00:00
#include "CfgWeapons.hpp"
2015-03-01 09:33:51 +00:00
#include "CFgSounds.hpp"
2015-02-21 20:09:57 +00:00
#include "ACE_Medical_Treatments.hpp"
2015-03-06 21:54:44 +00:00
#include "ACE_Settings.hpp"
#include "UI\RscTitles.hpp"