aboutsummaryrefslogtreecommitdiff
path: root/src/theme_builder/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theme_builder/main.cpp')
-rw-r--r--src/theme_builder/main.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/theme_builder/main.cpp b/src/theme_builder/main.cpp
index 4ba2a28a..8c79f2c0 100644
--- a/src/theme_builder/main.cpp
+++ b/src/theme_builder/main.cpp
@@ -1,9 +1,15 @@
+#include "components/MainWindow.hpp"
#include "cru/platform/bootstrap/Bootstrap.hpp"
-#include "cru/platform/gui/UiApplication.hpp"
int main() {
+ using namespace cru::theme_builder;
+
std::unique_ptr<cru::platform::gui::IUiApplication> application(
cru::platform::bootstrap::CreateUiApplication());
+ auto main_window = std::make_unique<MainWindow>();
+
+ main_window->Show();
+
return application->Run();
}