Skip to content

Commit ea4937b

Browse files
committed
Removed resource print statement
1 parent 758d8ff commit ea4937b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/GameController.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,12 @@ int GameController::getClickHistorySize(){
141141
return clickHistory.size();
142142
}
143143

144-
void printPlayerInfo(const Player& player) {
144+
/**
145+
* Now that the GUI has this information implemented, I am returning before this function prints. To use this function again simply remove the return
146+
*/
147+
void printPlayerInfo(const Player& player)
148+
{
149+
return;
145150
auto color = player.getColor();
146151
std::cout << player.getName() << "'s turn. (" << std::get<0>(color) << ", " << std::get<1>(color) << ", " << std::get<2>(color) <<")" << std::endl;
147152
std::cout << "Wood: " << player.getWood() << ", Brick: " << player.getBrick() << ", Ore: " << player.getOre() << ", Wheat: " << player.getWheat() << ", Wool: " << player.getWool() << std::endl;

0 commit comments

Comments
 (0)