summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/src/com/ilotterytea/maxoning/screens/game/shop/ShopMode.java6
-rw-r--r--core/src/com/ilotterytea/maxoning/screens/game/shop/ShopMultiplier.java17
2 files changed, 23 insertions, 0 deletions
diff --git a/core/src/com/ilotterytea/maxoning/screens/game/shop/ShopMode.java b/core/src/com/ilotterytea/maxoning/screens/game/shop/ShopMode.java
new file mode 100644
index 0000000..4563dfd
--- /dev/null
+++ b/core/src/com/ilotterytea/maxoning/screens/game/shop/ShopMode.java
@@ -0,0 +1,6 @@
+package com.ilotterytea.maxoning.screens.game.shop;
+
+public enum ShopMode {
+ BUY,
+ SELL
+}
diff --git a/core/src/com/ilotterytea/maxoning/screens/game/shop/ShopMultiplier.java b/core/src/com/ilotterytea/maxoning/screens/game/shop/ShopMultiplier.java
new file mode 100644
index 0000000..c106ea0
--- /dev/null
+++ b/core/src/com/ilotterytea/maxoning/screens/game/shop/ShopMultiplier.java
@@ -0,0 +1,17 @@
+package com.ilotterytea.maxoning.screens.game.shop;
+
+public enum ShopMultiplier {
+ X1(1),
+ X10(10),
+ ;
+
+ private final int multiplier;
+
+ ShopMultiplier(int multiplier) {
+ this.multiplier = multiplier;
+ }
+
+ public int getMultiplier() {
+ return multiplier;
+ }
+}