ACE3/addons/vehiclelock/config.cpp

26 lines
552 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_common", "ace_interaction"};
author[] = {"PabstMirror"};
authorUrl = "https://github.com/PabstMirror/";
2015-01-23 22:40:39 +00:00
VERSION_CONFIG;
};
};
class ACE_Settings {
class GVAR(DefaultLockpickStrength) {
value = 10;
typeName = "SCALAR";
};
};
2015-01-23 22:40:39 +00:00
#include "CfgEventHandlers.hpp"
#include "CfgMagazines.hpp"
#include "CfgVehicles.hpp"
#include "CfgWeapons.hpp"