mirror of
https://github.com/zhenyan121/SporeBG-Conid.git
synced 2026-04-10 06:14:08 +08:00
14 lines
279 B
C++
14 lines
279 B
C++
#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;
|
|
int round = 0;
|
|
|
|
}; |