24 lines
422 B
Plaintext
24 lines
422 B
Plaintext
#include "..\script_component.hpp"
|
|
|
|
[
|
|
QGVAR(setting_enable),
|
|
"CHECKBOX",
|
|
"Allow Map Copying",
|
|
[QUOTE(SETTINGS_GROUP_NAME), QUOTE(COMPONENT_BEAUTIFIED)],
|
|
true, // default value
|
|
true, // is global
|
|
{
|
|
params ["_value"];
|
|
[
|
|
QGVAR(setting_enable),
|
|
_value
|
|
] call EFUNC(common,logSettingChanged);
|
|
}
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
LEVEL_INFO,
|
|
QUOTE(COMPONENT),
|
|
"CREATED SETTINGS",
|
|
[]
|
|
] call EFUNC(common,log); |