2015-01-14 08:45:20 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
2015-01-18 07:32:07 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
2015-01-14 08:45:20 +00:00
|
|
|
author[] = {"Pabst Mirror"};
|
|
|
|
authorUrl = "https://github.com/PabstMirror/";
|
2015-01-18 07:32:07 +00:00
|
|
|
VERSION_CONFIG;
|
2015-01-14 08:45:20 +00:00
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-03-09 23:46:51 +00:00
|
|
|
#include "RscDisplayInventory.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-03-09 23:46:51 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(inventoryDisplaySize) {
|
|
|
|
value = 0;
|
|
|
|
typeName = "SCALAR";
|
2015-04-14 19:43:19 +00:00
|
|
|
isClientSettable = 1;
|
2015-03-09 23:46:51 +00:00
|
|
|
displayName = "$STR_ACE_Inventory_SettingName";
|
|
|
|
description = "$STR_ACE_Inventory_SettingDescription";
|
2015-03-09 23:53:19 +00:00
|
|
|
values[] = {"Normal (Default Size)", "Medium", "Bigger"};
|
2015-01-14 08:45:20 +00:00
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
2015-03-09 23:46:51 +00:00
|
|
|
|