From 8c5a4f0bea7609bf1a47941f9e84be905fa16740 Mon Sep 17 00:00:00 2001 From: James <150948866+jameslaight@users.noreply.github.com> Date: Sun, 21 Apr 2024 11:39:10 +0100 Subject: [PATCH] fix argument permutation --- core/src/com/monjaro/gamejam/main/Game.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/com/monjaro/gamejam/main/Game.java b/core/src/com/monjaro/gamejam/main/Game.java index 286ff51..7bd8986 100644 --- a/core/src/com/monjaro/gamejam/main/Game.java +++ b/core/src/com/monjaro/gamejam/main/Game.java @@ -28,7 +28,6 @@ public class Game extends ApplicationAdapter { private final static int TICKS_PER_SECOND = 60; private double tickProgress = 0; - private Round round; private UI ui; @@ -40,7 +39,7 @@ public class Game extends ApplicationAdapter { img = new Texture("badlogic.jpg"); 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.setPipSprite(new Texture("pip.png"));