Skip to content

Commit

Permalink
added top-right label to represent cost on a card
Browse files Browse the repository at this point in the history
  • Loading branch information
Zomis committed Feb 3, 2015
1 parent 6d8db95 commit 45f7461
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gdx/core/src/com/cardshifter/gdx/ui/CardView.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public CardView(CardshifterGame game, CardInfoMessage cardInfo) {
table = new Table(game.skin);
table.add((String) cardInfo.getProperties().get("name"));
costs = new HorizontalGroup();
costs.addActor(new Label("A", game.skin));
table.add(costs).row();
// table.add(image);
Table textTable = new Table(game.skin);
Expand Down

0 comments on commit 45f7461

Please sign in to comment.