diff options
author | Camil Staps | 2015-02-16 23:48:05 +0100 |
---|---|---|
committer | Camil Staps | 2015-02-16 23:48:05 +0100 |
commit | 131d8948cf419c4ad69a141c079deb51c8856e4e (patch) | |
tree | 91010111e6e3626258604acfebbeb08c88a143ef /trunk/GameController/src/nl/camilstaps |
Added PHP API framework
Diffstat (limited to 'trunk/GameController/src/nl/camilstaps')
-rw-r--r-- | trunk/GameController/src/nl/camilstaps/botleagues/GameController.java | 16 | ||||
-rw-r--r-- | trunk/GameController/src/nl/camilstaps/botleagues/MyGame.java | 12 |
2 files changed, 28 insertions, 0 deletions
diff --git a/trunk/GameController/src/nl/camilstaps/botleagues/GameController.java b/trunk/GameController/src/nl/camilstaps/botleagues/GameController.java new file mode 100644 index 0000000..0ad9d2c --- /dev/null +++ b/trunk/GameController/src/nl/camilstaps/botleagues/GameController.java @@ -0,0 +1,16 @@ +/** + * + */ +package nl.camilstaps.botleagues; + +/** + * The idea is to let this be a generic class that can be used for any game. + * It should take care of functions like: + * + * * Starting up bots + * * Sending data to bots + * * Receiving data from bots + */ +public abstract class GameController { + +} diff --git a/trunk/GameController/src/nl/camilstaps/botleagues/MyGame.java b/trunk/GameController/src/nl/camilstaps/botleagues/MyGame.java new file mode 100644 index 0000000..ecce818 --- /dev/null +++ b/trunk/GameController/src/nl/camilstaps/botleagues/MyGame.java @@ -0,0 +1,12 @@ +/** + * + */ +package nl.camilstaps.botleagues; + +/** + * The idea is to let this be an example of a game controller. + * Initially, we can do all the work here. Ideally, later, we'll split that up in an abstract part (in GameController) and an extension. + */ +public class MyGame extends GameController { + +} |