fix argument permutation
This commit is contained in:
parent
f95a1e9260
commit
8c5a4f0bea
1 changed files with 1 additions and 2 deletions
|
@ -28,7 +28,6 @@ public class Game extends ApplicationAdapter {
|
||||||
private final static int TICKS_PER_SECOND = 60;
|
private final static int TICKS_PER_SECOND = 60;
|
||||||
private double tickProgress = 0;
|
private double tickProgress = 0;
|
||||||
|
|
||||||
|
|
||||||
private Round round;
|
private Round round;
|
||||||
private UI ui;
|
private UI ui;
|
||||||
|
|
||||||
|
@ -40,7 +39,7 @@ public class Game extends ApplicationAdapter {
|
||||||
img = new Texture("badlogic.jpg");
|
img = new Texture("badlogic.jpg");
|
||||||
|
|
||||||
ui = new UI(50, 280, 10);
|
ui = new UI(50, 280, 10);
|
||||||
round = new Round(10);
|
round = new Round(new ArrayList<>(), 10);
|
||||||
|
|
||||||
Face.setBlankFaceSprite(new Texture("blank_die_face.png"));
|
Face.setBlankFaceSprite(new Texture("blank_die_face.png"));
|
||||||
Face.setPipSprite(new Texture("pip.png"));
|
Face.setPipSprite(new Texture("pip.png"));
|
||||||
|
|
Loading…
Add table
Reference in a new issue