diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..23da2cc --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# Botleagues Engine + +The Java engine is meant to be extended to create an own game. See the `Examples` repository for some ideas. + +The Java engine is **not** meant to be run standalone. + +## Compiling + +Simply run: + + ant + +This will compile the abstract GameController. You will still need to compile your own game (or one of the examples) and bots apart from this. + +The game engine outputs detailed debug information to stderr, and minimal output to stdout. Therefore, to discard the debug information, you can add `2>/dev/null` to the end of the command to _redirect stderr to the black hole_. |