aboutsummaryrefslogtreecommitdiff
path: root/GameController
diff options
context:
space:
mode:
authorThe Vu2015-02-21 15:43:18 +0100
committerThe Vu2015-02-21 15:43:18 +0100
commit46dd46045b7d3a77bb80ecc8602df5417c5463fd (patch)
tree54e19c58486d212824530c285e6b6139d5dfb278 /GameController
parentabstraction (diff)
deleted turn-class
Diffstat (limited to 'GameController')
-rw-r--r--GameController/src/nl/camilstaps/botleagues/GameController.java4
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();
}