mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-05 01:45:05 +01:00
5fa25fcf13
* Adds a new Hotkeys tab in the Controls group. * Right click to reconfigure. * See the original PR for more details & screenshots.
18 lines
379 B
C++
18 lines
379 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "ui_settings.h"
|
|
|
|
namespace UISettings {
|
|
|
|
const Themes themes{{
|
|
{"Default", "default"},
|
|
{"Dark", "qdarkstyle"},
|
|
{"Colorful", "colorful"},
|
|
{"Colorful Dark", "colorful_dark"},
|
|
}};
|
|
|
|
Values values = {};
|
|
} // namespace UISettings
|