#include "gui.hpp" namespace ougge::gui { void drawErrorWindow(const std::string& msg, bool* draw_error_window){ ImGui::Begin("ERROR", draw_error_window); ImGui::Text("%s", msg.c_str()); ImGui::End(); } }