From b35edfcf201d4e3df61125490662f51b78d79f97 Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Sun, 21 Sep 2025 15:26:42 +0200 Subject: [PATCH] Added ApplicationConfig argument to QuickApp constructor. --- public/raid/raid.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/raid/raid.hpp b/public/raid/raid.hpp index 188f0ec..6241bdb 100644 --- a/public/raid/raid.hpp +++ b/public/raid/raid.hpp @@ -241,6 +241,8 @@ private: std::string mFolderName; std::string mWindowTitle; public: + explicit QuickApp(ApplicationConfig config = {}) noexcept : Application(config) {} + void preInit(QuickAppOptions options); void render() override; std::string getFolderName() override;