#ifdef _DEBUG #pragma once #include #include #include "engine/surface.hpp" namespace devilution { bool IsConsoleOpen(); void OpenConsole(); bool ConsoleHandleEvent(const SDL_Event &event); void DrawConsole(const Surface &out); void PrintToConsole(std::string_view text); void PrintWarningToConsole(std::string_view text); } // namespace devilution #endif // _DEBUG