yaze 0.3.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
debug_window_card.cc
Go to the documentation of this file.
2
4#include "imgui/imgui.h"
5
6namespace yaze::editor {
7
9
10void DebugWindowCard::Draw(bool* p_open) {
11 if (ImGui::Begin("Debug Window", p_open)) {
12 ImGui::Text("Debug Information");
13 ImGui::Separator();
14 ImGui::Text("Application Average: %.3f ms/frame (%.1f FPS)",
15 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
16
17 // Add more debug info here as needed
18 }
19 ImGui::End();
20}
21
22} // namespace yaze::editor
void Draw(bool *p_open=nullptr)
Editors are the view controllers for the application.
Definition agent_chat.cc:23