uisettings.cpp 383 B

1234567891011121314151617
  1. // Copyright 2016 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "yuzu/uisettings.h"
  5. namespace UISettings {
  6. const Themes themes{{
  7. {"Default", "default"},
  8. {"Dark", "qdarkstyle"},
  9. {"Colorful", "colorful"},
  10. {"Colorful Dark", "colorful_dark"},
  11. }};
  12. Values values = {};
  13. } // namespace UISettings