From 9290db240a10d107801a568e57d742a36052ccc0 Mon Sep 17 00:00:00 2001 From: Ida Massow Date: Sat, 21 May 2011 16:10:40 +0200 Subject: Nochmal, git ist schwierig git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@258 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/model/IGameSettings.java | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/jrummikub/model/IGameSettings.java (limited to 'src') 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 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 -- cgit v1.2.3