ACE3/addons/mk6mortar/config.cpp

39 lines
957 B
C++
Raw Normal View History

2015-04-05 06:57:24 +00:00
#include "script_component.hpp"
class CfgPatches {
class ADDON {
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_interaction"};
author[] = {"PabstMirror"};
authorUrl = "https://github.com/acemod";
VERSION_CONFIG;
};
};
#include "CfgEventHandlers.hpp"
#include "CfgMagazines.hpp"
#include "CfgVehicles.hpp"
#include "CfgWeapons.hpp"
#include "RscInGameUI.hpp"
2015-04-05 07:18:51 +00:00
class ACE_Settings {
2015-04-05 19:34:39 +00:00
//These settings effect gameplay difficutly: defaults will leave the mortar the same as vanilla
class GVAR(airResistanceEnabled) {
value = 0;
typeName = "BOOL";
isClientSetable = 0;
};
2015-04-05 19:34:39 +00:00
class GVAR(allowComputerRangefinder) {
value = 1;
typeName = "BOOL";
isClientSetable = 0;
};
class GVAR(allowCompass) {
value = 1;
2015-04-05 07:18:51 +00:00
typeName = "BOOL";
isClientSetable = 0;
};
};