mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Displaying player's poison counters. Displaying alls counters info in tooltips.
This commit is contained in:
parent
76b1d94977
commit
93878d4868
5 changed files with 33 additions and 3 deletions
|
|
@ -107,6 +107,7 @@ public class PlayerPanelExt extends javax.swing.JPanel {
|
|||
public void update(PlayerView player) {
|
||||
this.player = player;
|
||||
lifeLabel.setText(Integer.toString(player.getLife()));
|
||||
poisonLabel.setText(Integer.toString(player.getPoison()));
|
||||
handLabel.setText(Integer.toString(player.getHandCount()));
|
||||
libraryLabel.setText(Integer.toString(player.getLibraryCount()));
|
||||
graveLabel.setText(Integer.toString(player.getGraveyard().size()));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue