aboutsummaryrefslogtreecommitdiff
path: root/Debug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Debug.cpp')
-rw-r--r--Debug.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/Debug.cpp b/Debug.cpp
index ad1091f..d08dc94 100644
--- a/Debug.cpp
+++ b/Debug.cpp
@@ -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();
}