GameState.show: Add player turn
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
23c97b0cd7
commit
a7a193c0b9
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue