summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/IGameSettings.java
diff options
context:
space:
mode:
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