diff options
author | BDKPlayer <fabian.stotz@yahoo.de> | 2020-04-04 22:05:13 +0200 |
---|---|---|
committer | BDKPlayer <fabian.stotz@yahoo.de> | 2020-04-04 22:05:13 +0200 |
commit | 351c040f00745b985b71423e5ac1bfede12c85b5 (patch) | |
tree | f0a6479a26c9d41036bbfdc788417b72d775cadc /Debug.cpp | |
parent | d0f91aed16a1cb40df6e1ab7c19b17410888906d (diff) |
Added notification system
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 |