mirror of
https://github.com/citra-emu/citra.git
synced 2025-04-11 07:50:07 +00:00
26 lines
510 B
C++
26 lines
510 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "core/settings.h"
|
|
#include <QVariant>
|
|
|
|
class QSettings;
|
|
|
|
class Config {
|
|
QSettings* qt_config;
|
|
std::string qt_config_loc;
|
|
|
|
void ReadValues();
|
|
void SaveValues();
|
|
public:
|
|
Config();
|
|
~Config();
|
|
|
|
void Reload();
|
|
void Save();
|
|
};
|
|
extern const std::array<QVariant, Settings::NativeInput::NUM_INPUTS> defaults;
|