// DragonX Wallet - ImGui Edition // Copyright 2024-2026 The Hush Developers // Released under the GPLv3 #include "main_window.h" #include "../../app.h" #include "imgui.h" namespace dragonx { namespace ui { void RenderMainWindow(App* app) { // Main window rendering is handled by App::render() // This file is for any shared window utilities (void)app; } } // namespace ui } // namespace dragonx