Displaying player's poison counters. Displaying alls counters info in tooltips.

This commit is contained in:
magenoxx 2011-01-29 10:45:05 +03:00
parent 76b1d94977
commit 93878d4868
5 changed files with 33 additions and 3 deletions

View file

@ -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()));