ACE3/addons/movement/config.cpp

28 lines
663 B
C++
Raw Normal View History

2015-01-18 05:45:28 +00:00
#include "script_component.hpp"
class CfgPatches {
class ADDON {
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common"};
author[] = {"commy2","KoffeinFlummi","Tachii"};
authorUrl = "https://github.com/commy2/";
VERSION_CONFIG;
};
};
#include "CfgEventHandlers.hpp"
#include "CfgFatigue.hpp"
//#include "CfgInventoryGlobalVariable.hpp"
#include "CfgMoves.hpp"
2015-01-30 22:19:45 +00:00
class ACE_Settings {
2015-01-23 08:43:43 +00:00
class GVAR(useImperial) {
2015-01-30 22:19:45 +00:00
value = 0;
typeName = "BOOL";
2015-04-14 19:43:19 +00:00
isClientSettable = 1;
2015-01-18 05:45:28 +00:00
displayName = "$STR_ACE_Movement_UseImperial";
};
};