diff options
author | The Vu | 2015-02-21 15:43:18 +0100 |
---|---|---|
committer | The Vu | 2015-02-21 15:43:18 +0100 |
commit | 619d95f5e98cf3323e0b580a36cce012433852ab (patch) | |
tree | dbdca3d9c344cb6ef755aba300c3f5785a79d084 | |
parent | abstraction (diff) |
deleted turn-class
-rw-r--r-- | src/nl/camilstaps/botleagues/GameController.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nl/camilstaps/botleagues/GameController.java b/src/nl/camilstaps/botleagues/GameController.java index caf8de3..5542321 100644 --- a/src/nl/camilstaps/botleagues/GameController.java +++ b/src/nl/camilstaps/botleagues/GameController.java @@ -6,8 +6,6 @@ import java.util.ArrayList; import java.util.Collections; import java.util.List; -import nl.camilstaps.botleagues.roundbasedgame.Turn; - /** * The idea is to let this be a generic class that can be used for any game. It * should take care of functions like: @@ -102,7 +100,5 @@ public abstract class GameController { rank(); return contestants.get(contestants.size() - 1); } - - protected abstract Turn getTurn(); } |