// 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 Settings window * Modal dialog for application settings */ void RenderSettingsWindow(App* app, bool* p_open); } // namespace ui } // namespace dragonx