add basic shop
This commit is contained in:
parent
98aaf0605b
commit
9404a14ec3
1 changed files with 10 additions and 0 deletions
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue