aboutsummaryrefslogtreecommitdiff
path: root/Debug.cpp
diff options
context:
space:
mode:
authorBDKPlayer <fabian.stotz@yahoo.de>2020-04-04 22:05:13 +0200
committerBDKPlayer <fabian.stotz@yahoo.de>2020-04-04 22:05:13 +0200
commit351c040f00745b985b71423e5ac1bfede12c85b5 (patch)
treef0a6479a26c9d41036bbfdc788417b72d775cadc /Debug.cpp
parentd0f91aed16a1cb40df6e1ab7c19b17410888906d (diff)
Added notification system
Diffstat (limited to 'Debug.cpp')
-rw-r--r--Debug.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/Debug.cpp b/Debug.cpp
new file mode 100644
index 0000000..c6fb43f
--- /dev/null
+++ b/Debug.cpp
@@ -0,0 +1,30 @@
+#include "Debug.h"
+
+#include "Sdk.h"
+#include "Renderer.h"
+#include "Engine.h"
+
+
+void Debug::OnInitialise()
+{
+
+}
+void Debug::OnMenuMainWindow()
+{
+ ImGui::Separator();
+ ImGui::Text("Debug");
+ if (ImGui::Button("Annoy @Kleon"))
+ {
+ Engine::Get()->PrintNotification("When DOOM Eternal hack? ");
+ }
+ if (ImGui::Button("Annoy @Timb3r"))
+ {
+ Engine::Get()->PrintBottomNotification("I do miss the meme war :(", 0xffffffff);
+ }
+ ImGui::Separator();
+}
+
+void Debug::OnShutdown()
+{
+
+} \ No newline at end of file