Added DebugInfo

This commit is contained in:
2025-12-25 15:58:57 +08:00
parent ad83a4f70d
commit 8a78bfef14
9 changed files with 290 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include <string>
#include <utility>
struct DebugData {
bool showFPS = true;
bool showMousePosition = true;
std::pair<int, int> mousePosition = {0, 0};
std::pair<int, int> mouseLogicalPostion = {0, 0};
int currentFPS = 0;
};