diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Config.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Config.hpp b/include/Config.hpp index efb7edd..dcad4f2 100644 --- a/include/Config.hpp +++ b/include/Config.hpp @@ -42,6 +42,10 @@ namespace QuickMedia { bool auto_group_episodes = false; }; + struct YoutubeConfig { + bool load_progress = true; + }; + struct Config { Config() = default; Config(const Config&) = delete; @@ -54,6 +58,7 @@ namespace QuickMedia { VideoConfig video; LocalMangaConfig local_manga; LocalAnimeConfig local_anime; + YoutubeConfig youtube; bool use_system_fonts = false; bool use_system_mpv_config = false; std::string theme = "default"; |