12 lines
224 B
C++
12 lines
224 B
C++
#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();
|
|
}
|
|
|
|
}
|