Epoch/Sources/epoch_config/Configs/CfgEpochConfiguration.hpp

34 lines
787 B
C++
Raw Normal View History

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:
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_config/Configs/CfgEpochConfiguration.hpp
*/
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
};
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
};