// DragonX Wallet - ImGui Edition // Copyright 2024-2026 The Hush Developers // Released under the GPLv3 #pragma once namespace dragonx { class App; namespace ui { /** * @brief Render the main window content * Called from App::render(), manages the overall layout */ void RenderMainWindow(App* app); } // namespace ui } // namespace dragonx