Commit 6e12e03b authored by Matthew Hausknecht's avatar Matthew Hausknecht

Renamed executable.

parent 9a41eab9
...@@ -22,17 +22,16 @@ Python Install (required only for python interface): `pip install [--user] .` ...@@ -22,17 +22,16 @@ Python Install (required only for python interface): `pip install [--user] .`
## Demos ## Demos
Start a simple 1v1 game played by Agent2D: Start a simple 1v1 game played by Agent2D:
``` ```
./bin/start.py --offense-npcs=1 --defense-npcs=1 ./bin/HFO --offense-npcs=1 --defense-npcs=1 --no-sync
``` ```
Start an example agent on the empty goal task. This agent will move Start an example agent on the empty goal task. This agent will move
forwards slowly. First start the server: `./bin/start.py forwards slowly. First start the server: `./bin/HFO --offense-agents=1
--offense-agents=1 &` and then connect the agent: --no-sync &` and then connect the agent: `./example/hfo_example_agent`
`./example/hfo_example_agent`
Or do both in a single command: Or do both in a single command:
``` ```
(./bin/start.py --offense-agents=1 &) && ./example/hfo_example_agent (./bin/HFO --offense-agents=1 --no-sync &) && ./example/hfo_example_agent
``` ```
## Example Agents ## Example Agents
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment