diff options
author | The Vu | 2015-02-21 15:43:18 +0100 |
---|---|---|
committer | The Vu | 2015-02-21 15:43:18 +0100 |
commit | 46dd46045b7d3a77bb80ecc8602df5417c5463fd (patch) | |
tree | 54e19c58486d212824530c285e6b6139d5dfb278 /GameController | |
parent | abstraction (diff) |
deleted turn-class
Diffstat (limited to 'GameController')
-rw-r--r-- | GameController/src/nl/camilstaps/botleagues/GameController.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/GameController/src/nl/camilstaps/botleagues/GameController.java b/GameController/src/nl/camilstaps/botleagues/GameController.java index caf8de3..5542321 100644 --- a/GameController/src/nl/camilstaps/botleagues/GameController.java +++ b/GameController/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(); } |