GameState.show: Add player turn

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2022-08-19 14:21:10 +02:00
parent 23c97b0cd7
commit a7a193c0b9
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2

View file

@ -416,5 +416,9 @@ impl GameState {
print!("{} ", card); print!("{} ", card);
}); });
print!("\n\n"); print!("\n\n");
// Player turn
// TODO: End game
println!("Player {} to go.", self.actions.len() % usize::from(self.players) + 1);
} }
} }