From 58b2085deb328c82b77421e1d9e3a1b57d532a00 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Thu, 19 Feb 2015 18:58:40 +0100 Subject: directory structure --- GameController/.gitignore | 1 + GameController/build.xml | 38 ++++++++++++++++++++++ .../nl/camilstaps/botleagues/GameController.java | 2 +- 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 GameController/build.xml diff --git a/GameController/.gitignore b/GameController/.gitignore index b630aee..5bda502 100644 --- a/GameController/.gitignore +++ b/GameController/.gitignore @@ -3,6 +3,7 @@ # Directories # /build/ /bin/ +/dist/ target/ # OS Files # diff --git a/GameController/build.xml b/GameController/build.xml new file mode 100644 index 0000000..31b3d59 --- /dev/null +++ b/GameController/build.xml @@ -0,0 +1,38 @@ + + + Controls a Botleagues game + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/GameController/src/nl/camilstaps/botleagues/GameController.java b/GameController/src/nl/camilstaps/botleagues/GameController.java index 77eea76..1054215 100644 --- a/GameController/src/nl/camilstaps/botleagues/GameController.java +++ b/GameController/src/nl/camilstaps/botleagues/GameController.java @@ -19,7 +19,7 @@ import java.util.List; public abstract class GameController { /** The contestants in this game */ - List contestants = new ArrayList<>(); + List contestants = new ArrayList(); /** * Add a new contestant -- cgit v1.2.3