aboutsummaryrefslogtreecommitdiffstats
path: root/src/Debugger.hpp
diff options
context:
space:
mode:
authorkotorifan <kotorifan05@gmail.com>2026-01-23 15:15:48 +0100
committerkotorifan <kotorifan05@gmail.com>2026-02-04 09:02:16 +0100
commit32837712fedf4557ff44df7d5b8ddbd40c5f7990 (patch)
tree671d2b82f45d5e6de70ac5d15f59ea94b884d4b6 /src/Debugger.hpp
downloadgameboy-32837712fedf4557ff44df7d5b8ddbd40c5f7990.tar.gz
Stupid problems with the old git repo. New one, unfortunately.
Diffstat (limited to 'src/Debugger.hpp')
-rw-r--r--src/Debugger.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Debugger.hpp b/src/Debugger.hpp
new file mode 100644
index 0000000..fed6f93
--- /dev/null
+++ b/src/Debugger.hpp
@@ -0,0 +1,16 @@
+#pragma once
+#include <SDL2/SDL.h>
+#include <SDL2/SDL_ttf.h>
+
+#include "SDL_stuff.hpp"
+#include "Common.hpp"
+
+namespace DMG01
+{
+ class Debugger_Window : public Generic_SDL_Window
+ {
+ public:
+ char* debug_info_string;
+ void read_debug_info();
+ };
+}