ACE3/addons/vehiclelock/config.cpp

27 lines
658 B
C++
Raw Normal View History

2015-01-23 22:40:39 +00:00
#include "script_component.hpp"
class CfgPatches {
2015-01-23 22:40:39 +00:00
class ADDON {
units[] = {};
weapons[] = {};
2015-01-23 22:40:39 +00:00
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_interaction"};
author = ECSTRING(common,ACETeam);
url = ECSTRING(main,URL);
authors[] = {"PabstMirror"};
2015-04-28 18:26:52 +00:00
authorUrl = "https://github.com/acemod/ACE3";
2015-01-23 22:40:39 +00:00
VERSION_CONFIG;
};
};
#include "ACE_Settings.hpp"
2015-01-23 22:40:39 +00:00
#include "CfgEventHandlers.hpp"
#include "CfgMagazines.hpp"
#include "CfgVehicles.hpp"
#include "CfgWeapons.hpp"
2016-05-24 13:13:11 +00:00
class ACE_newEvents {
2016-05-25 00:37:24 +00:00
VehicleLock_SetVehicleLock = QGVAR(setVehicleLock);
VehicleLock_SetupCustomKey = QGVAR(setupCustomKey);
2016-05-24 14:06:17 +00:00
};