add basic shop

This commit is contained in:
James 2024-04-21 16:02:17 +01:00
parent 98aaf0605b
commit 9404a14ec3

View file

@ -29,6 +29,8 @@ public class Game extends ApplicationAdapter {
private Round round; private Round round;
private int roundNumber = 0; private int roundNumber = 0;
private List<Face> shop = new ArrayList<>();
private UI ui; private UI ui;
private SegmentUI segUi; private SegmentUI segUi;
@ -193,4 +195,12 @@ public class Game extends ApplicationAdapter {
return round; return round;
} }
private void fillShop() {
}
public List<Face> getShop() {
return shop;
}
} }