summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/IGameSettings.java
diff options
context:
space:
mode:
authorJannis Harder <harder@informatik.uni-luebeck.de>2011-05-24 01:51:49 +0200
committerJannis Harder <harder@informatik.uni-luebeck.de>2011-05-24 01:51:49 +0200
commit2446671f7ab832cca5e0412ae0301b901e0b69d5 (patch)
tree00dc3910836e3e84162ba8dfd997d013fad40b12 /src/jrummikub/model/IGameSettings.java
parent102299d0ffc15a08167f6eab8b9813c2f7dcda3b (diff)
downloadJRummikub-2446671f7ab832cca5e0412ae0301b901e0b69d5.tar
JRummikub-2446671f7ab832cca5e0412ae0301b901e0b69d5.zip
Cleaned up RoundControl tests
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@260 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/model/IGameSettings.java')
-rw-r--r--src/jrummikub/model/IGameSettings.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/jrummikub/model/IGameSettings.java b/src/jrummikub/model/IGameSettings.java
deleted file mode 100644
index 68e801a..0000000
--- a/src/jrummikub/model/IGameSettings.java
+++ /dev/null
@@ -1,29 +0,0 @@
-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