diff options
Diffstat (limited to 'Debug.cpp')
-rw-r--r-- | Debug.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -11,15 +11,16 @@ void Debug::OnInitialise() } void Debug::OnMenuMainWindow() { + int idleUnits = 0; + + PlayerArray* playerArray = Engine::Get()->GetPlayerArray(); + ImGui::Separator(); ImGui::Text("Debug"); - if (ImGui::Button("SendChat")) - { - Engine::Get()->SendChat("Testmessage", true); - } - if (ImGui::Button("SendChat2")) + //ImGui::Text("Idle: %d", idleUnit); + if (ImGui::Button("Flare")) { - Engine::Get()->SendChat("Testmessage2", false); + Engine::Get()->Flare(100.f, 100.f); } ImGui::Separator(); } |