From d7e113be4a56fa5aac3680fb5363168f545e5bce Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Mon, 16 Feb 2015 23:48:05 +0100 Subject: Added PHP API framework --- backyard/trunk/GameController/.gitignore | 73 ---------------------- .../nl/camilstaps/botleagues/GameController.java | 16 ----- .../src/nl/camilstaps/botleagues/MyGame.java | 12 ---- 3 files changed, 101 deletions(-) delete mode 100644 backyard/trunk/GameController/.gitignore delete mode 100644 backyard/trunk/GameController/src/nl/camilstaps/botleagues/GameController.java delete mode 100644 backyard/trunk/GameController/src/nl/camilstaps/botleagues/MyGame.java (limited to 'backyard/trunk/GameController') diff --git a/backyard/trunk/GameController/.gitignore b/backyard/trunk/GameController/.gitignore deleted file mode 100644 index b630aee..0000000 --- a/backyard/trunk/GameController/.gitignore +++ /dev/null @@ -1,73 +0,0 @@ -# Source: http://www.bmchild.com/2012/06/git-ignore-for-java-eclipse-project.html - -# Directories # -/build/ -/bin/ -target/ - -# OS Files # -.DS_Store - -*.class - -# Package Files # -*.jar -*.war -*.ear -*.db - -###################### -# Windows -###################### - -# Windows image file caches -Thumbs.db - -# Folder config file -Desktop.ini - -###################### -# OSX -###################### - -.DS_Store -.svn - -# Thumbnails -._* - -# Files that might appear on external disk -.Spotlight-V100 -.Trashes - - -###################### -# Eclipse -###################### - -*.pydevproject -.project -.metadata -bin/** -tmp/** -tmp/**/* -*.tmp -*.bak -*.swp -*~.nib -local.properties -.classpath -.settings/ -.loadpath -/src/main/resources/rebel.xml -# External tool builders -.externalToolBuilders/ - -# Locally stored "Eclipse launch configurations" -*.launch - -# CDT-specific -.cproject - -# PDT-specific -.buildpath diff --git a/backyard/trunk/GameController/src/nl/camilstaps/botleagues/GameController.java b/backyard/trunk/GameController/src/nl/camilstaps/botleagues/GameController.java deleted file mode 100644 index 0ad9d2c..0000000 --- a/backyard/trunk/GameController/src/nl/camilstaps/botleagues/GameController.java +++ /dev/null @@ -1,16 +0,0 @@ -/** - * - */ -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/backyard/trunk/GameController/src/nl/camilstaps/botleagues/MyGame.java b/backyard/trunk/GameController/src/nl/camilstaps/botleagues/MyGame.java deleted file mode 100644 index ecce818..0000000 --- a/backyard/trunk/GameController/src/nl/camilstaps/botleagues/MyGame.java +++ /dev/null @@ -1,12 +0,0 @@ -/** - * - */ -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 { - -} -- cgit v1.2.3