Some checks failed
eden-license / license-header (pull_request) Failing after 24s
* this is totally a mess but builds, I just need to format and check everything im late to go work! * prevents error on migration Signed-off-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
21 lines
312 B
C++
21 lines
312 B
C++
#pragma once
|
|
#include "common/settings.h"
|
|
|
|
namespace BackEndSettings {
|
|
|
|
using namespace Settings;
|
|
|
|
struct Values {
|
|
SwitchableSetting<bool> backend_force_x11;
|
|
Setting<bool> backend_hide_warning_popup;
|
|
|
|
Values();
|
|
};
|
|
|
|
extern Values values;
|
|
|
|
void Save();
|
|
void Restore();
|
|
|
|
} // namespace BackEndSettings
|
|
|