forked from suyu/suyu
57a4a2ae0f
* Adds a new Hotkeys tab in the Controls group. * Double-click a Hotkey to rebind it.
15 lines
309 B
C++
15 lines
309 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"},
|
|
}};
|
|
|
|
Values values = {};
|
|
} // namespace UISettings
|