aboutsummaryrefslogtreecommitdiff
path: root/ResourceInformation.cpp
blob: a5c7d5707896a2c82917888b6cdc79e59d536f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "ResourceInformation.h"

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

#include "Engine.h"


void ResourceInformation::OnMenuPlayerTreenode(Player* player, int playerIndex)
{
	ImGui::Text("Resources: %p", player->pResources);
	ImGui::Text("Wood: %.f", player->pResources->wood);
	ImGui::Text("Food: %.f", player->pResources->food);
	ImGui::Text("Gold: %.f", player->pResources->gold);
	ImGui::Text("Stone: %.f", player->pResources->stone);
	ImGui::Text("PopSpaceLeft: %.f/%.f", player->pResources->currentPop, player->pResources->currentPop + player->pResources->popSpaceLeft);
}