summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model
diff options
context:
space:
mode:
authorIda Massow <massow@informatik.uni-luebeck.de>2011-05-21 16:10:40 +0200
committerIda Massow <massow@informatik.uni-luebeck.de>2011-05-21 16:10:40 +0200
commit9290db240a10d107801a568e57d742a36052ccc0 (patch)
treec7147d2f91c6a31b6893619e14e1784c2946beda /src/jrummikub/model
parent941c81497a5809003db7465a3707a10492aca64f (diff)
downloadJRummikub-9290db240a10d107801a568e57d742a36052ccc0.tar
JRummikub-9290db240a10d107801a568e57d742a36052ccc0.zip
Nochmal, git ist schwierig
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@258 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/model')
-rw-r--r--src/jrummikub/model/IGameSettings.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/jrummikub/model/IGameSettings.java b/src/jrummikub/model/IGameSettings.java
new file mode 100644
index 0000000..68e801a
--- /dev/null
+++ b/src/jrummikub/model/IGameSettings.java
@@ -0,0 +1,29 @@
+package jrummikub.model;
+
+import java.util.List;
+
+public interface IGameSettings {
+
+ /**
+ * Returns the list containing the settings of all players
+ *
+ * @return the player settings list
+ */
+ public List<PlayerSettings> getPlayerList();
+
+ /**
+ * Sets the initial meld threshold
+ *
+ * @param value
+ * the value to set
+ */
+ public void setInitialMeldThreshold(int value);
+
+ /**
+ * Returns the initial meld threshold
+ *
+ * @return the threshold
+ */
+ public int getInitialMeldThreshold();
+
+} \ No newline at end of file