#pragma once namespace console { HWND get_window(); void print(std::string_view fmt, std::format_args&& args, const std::source_location& loc); template class info { public: info(std::string_view fmt, const Args&... args, const std::source_location& loc = std::source_location::current()) { print(fmt, std::make_format_args(args...), loc); } }; template info(std::string_view fmt, const Args&... args) -> info; } // namespace console