2015-12-07 16:24:52 +00:00
|
|
|
/*
|
|
|
|
Author: Raimonds Virtoss - EpochMod.com
|
|
|
|
|
|
|
|
Contributors:
|
|
|
|
|
|
|
|
Description:
|
|
|
|
Config for Epoch Configuration system
|
|
|
|
|
|
|
|
Licence:
|
|
|
|
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
|
|
|
|
|
|
|
Github:
|
2016-06-13 16:54:19 +00:00
|
|
|
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_config/Configs/CfgEpochConfiguration.hpp
|
2015-12-07 16:24:52 +00:00
|
|
|
*/
|
|
|
|
|
2015-10-05 18:40:04 +00:00
|
|
|
class CfgEpochConfiguration
|
|
|
|
{
|
|
|
|
/** class order here decides order of buttons on gui **/
|
2015-10-12 19:15:10 +00:00
|
|
|
class remap
|
2015-10-05 18:40:04 +00:00
|
|
|
{
|
2015-10-12 19:15:10 +00:00
|
|
|
name = "Controls";
|
2015-10-05 18:40:04 +00:00
|
|
|
color[] = {1,1,1,1};
|
|
|
|
icon = "\x\addons\a3_epoch_code\Data\owner.paa";
|
2015-10-12 19:15:10 +00:00
|
|
|
controlGroup = "EpochConfigKeyMap";
|
2015-10-05 18:40:04 +00:00
|
|
|
};
|
2016-06-29 22:32:57 +00:00
|
|
|
class HUD
|
|
|
|
{
|
|
|
|
name = "Customize HUD (WIP)";
|
|
|
|
color[] = {1,1,1,1};
|
|
|
|
icon = "\x\addons\a3_epoch_code\Data\owner.paa";
|
|
|
|
controlGroup = "Epoch_main_config_dynamicHUD";
|
|
|
|
};
|
2015-10-12 19:15:10 +00:00
|
|
|
class html
|
2015-10-05 18:40:04 +00:00
|
|
|
{
|
2015-10-12 19:15:10 +00:00
|
|
|
name = "Changelog";
|
2015-10-05 18:40:04 +00:00
|
|
|
color[] = {1,1,1,1};
|
|
|
|
icon = "\x\addons\a3_epoch_code\Data\owner.paa";
|
2015-10-12 19:15:10 +00:00
|
|
|
controlGroup = "Epoch_main_config_changelog";
|
2015-10-05 18:40:04 +00:00
|
|
|
};
|
2015-12-07 16:24:52 +00:00
|
|
|
};
|