/** * @file Window.h * @author apio (cloudapio.eu) * @brief UI window dialogs. * * @copyright Copyright (c) 2024, the Luna authors. * */ #pragma once #include #include namespace ui { namespace Dialog { Result show_message(StringView title, StringView message); Result show_input_dialog(StringView title, StringView message, Function callback); } }