2015-01-21 11:43:58 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
2015-01-21 22:27:53 +00:00
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
|
|
|
author[] = {"Combat Space Enhancement"};
|
|
|
|
authorUrl = "http://csemod.com";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
2015-01-12 22:19:55 +00:00
|
|
|
};
|
2015-01-21 11:43:58 +00:00
|
|
|
|
2015-01-12 22:19:55 +00:00
|
|
|
class CfgAddons {
|
2015-01-21 22:27:53 +00:00
|
|
|
class PreloadAddons {
|
|
|
|
class ADDON {
|
|
|
|
list[] = {QUOTE(ADDON)};
|
|
|
|
};
|
|
|
|
};
|
2015-01-12 22:19:55 +00:00
|
|
|
};
|
2015-01-21 23:29:42 +00:00
|
|
|
class ACE_Options {
|
2015-01-21 23:43:57 +00:00
|
|
|
class GVAR(testOption) {
|
|
|
|
displayName = "Config Test";
|
|
|
|
description = "Config Description";
|
|
|
|
default = 1;
|
|
|
|
values[] = {"Yeah", "Naa"};
|
|
|
|
};
|
2015-01-21 23:29:42 +00:00
|
|
|
};
|
|
|
|
class ACE_Colors {
|
2015-01-21 23:43:57 +00:00
|
|
|
class GVAR(testColor) {
|
|
|
|
displayName = "Color Config Test";
|
|
|
|
description = "Color Config Description";
|
|
|
|
default[] = {0,1,1,1};
|
|
|
|
};
|
2015-01-21 23:29:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-01-21 11:43:58 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "gui\define.hpp"
|
|
|
|
#include "gui\settingsMenu.hpp"
|
|
|
|
#include "gui\pauseMenu.hpp"
|