ACE3/addons/overheating/config.cpp

33 lines
770 B
C++
Raw Normal View History

2015-01-13 03:23:14 +00:00
#include "script_component.hpp"
2015-01-13 03:23:14 +00:00
class CfgPatches {
class ADDON {
units[] = {};
weapons[] = {"ACE_SpareBarrel"};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_interaction"};
2015-03-24 04:18:00 +00:00
author[] = {"commy2", "KoffeinFlummi", "esteldunedain"};
2015-01-13 03:23:14 +00:00
authorUrl = "https://github.com/commy2/";
VERSION_CONFIG;
};
};
2015-01-13 03:23:14 +00:00
#include "CfgEventHandlers.hpp"
2015-01-13 03:23:14 +00:00
#include "CfgSounds.hpp"
2015-01-13 03:23:14 +00:00
#include "CfgVehicles.hpp"
2015-01-13 03:23:14 +00:00
#include "CfgWeapons.hpp"
class ACE_Settings {
class GVAR(DisplayTextOnJam) {
typeName = "BOOL";
2015-04-14 19:43:19 +00:00
isClientSettable = 1;
value = 1;
displayName = "$STR_ACE_overheating_SettingDisplayTextName";
description = "$STR_ACE_overheating_SettingDisplayTextDesc";
};
};