aboutsummaryrefslogtreecommitdiff
path: root/Debug.cpp
blob: d86d139fd2c27f297bda4c615c63cbcf269a6df1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "Debug.h"

#include "Sdk.h"
#include "Renderer.h"
#include "Engine.h"


void Debug::OnInitialise()
{

}
void Debug::OnMenuMainWindow()
{
	int idleUnits = 0;

	PlayerArray* playerArray = Engine::Get()->GetPlayerArray();
	
	ImGui::Separator();
	ImGui::Text("Debug");
	//ImGui::Text("Idle: %d", idleUnit);
	if (ImGui::Button("nothing"))
	{

	}
	ImGui::Separator();
}

void Debug::OnShutdown()
{

}

void Debug::OnUnitCreated(Unit* unit)
{
	//printf("Created %s\n", unit->pUnitData->name);
}