ACE3/addons/sandbag/config.cpp
2016-06-04 11:12:56 +01:00

23 lines
603 B
C++

#include "script_component.hpp"
class CfgPatches {
class ADDON {
units[] = {"ACE_Item_Sandbag", "ACE_Item_Sandbag_empty"};
weapons[] = {"ACE_Sandbag", "ACE_Sandbag_empty"};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_interaction"};
author = ECSTRING(common,ACETeam);
authors[] = {"Rocko", "Ruthberg"};
url = ECSTRING(main,URL);
VERSION_CONFIG;
};
};
#include "CfgEventHandlers.hpp"
#include "CfgVehicles.hpp"
#include "CfgWeapons.hpp"
class ACE_newEvents {
interactMenuOpened = "ace_interactMenuOpened";
};