From 9404a14ec3f5c302e003a3e7e928e50d09f8e632 Mon Sep 17 00:00:00 2001 From: James <150948866+jameslaight@users.noreply.github.com> Date: Sun, 21 Apr 2024 16:02:17 +0100 Subject: [PATCH] add basic shop --- core/src/com/monjaro/gamejam/main/Game.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/src/com/monjaro/gamejam/main/Game.java b/core/src/com/monjaro/gamejam/main/Game.java index d6ca4bc..09e3c14 100644 --- a/core/src/com/monjaro/gamejam/main/Game.java +++ b/core/src/com/monjaro/gamejam/main/Game.java @@ -29,6 +29,8 @@ public class Game extends ApplicationAdapter { private Round round; private int roundNumber = 0; + private List shop = new ArrayList<>(); + private UI ui; private SegmentUI segUi; @@ -193,4 +195,12 @@ public class Game extends ApplicationAdapter { return round; } + private void fillShop() { + + } + + public List getShop() { + return shop; + } + }