diff options
Diffstat (limited to 'Debug.cpp')
-rw-r--r-- | Debug.cpp | 30 |
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 |