Split referee data to model and view
[troll.git] / src / main / java / com / codingame / game / Model.java
diff --git a/src/main/java/com/codingame/game/Model.java b/src/main/java/com/codingame/game/Model.java
new file mode 100644 (file)
index 0000000..b98de7d
--- /dev/null
@@ -0,0 +1,10 @@
+package com.codingame.game;
+
+import java.util.Random;
+
+class Model {
+    Random random;
+    int roadLength;
+    int initialStones;
+    int trollPosition;
+}