More documentation; an agents directory for people to write there agents in, and...
[progcomp10.git] / src / arenas / MyAgent.py
1 #!/usr/bin/python2.5
2 '''PythonSampleAgents.py
3 An arena that runs the sample bots in python.
4 Written by Daniel Axtens <[email protected]> for the UCC Programming Competition in 2010.
5
6 Licensed under an MIT-style license: see the LICENSE file for details.
7 '''
8
9 from SampleAgents import Angel, Lucifer, Dummy, Wash, Streetfighter
10
11 # Import your agent here:
12 # e.g. from agents.<youragentname> import <youragentname>
13
14 class arena:
15     # Add you agent here:
16     # e.g. Agents=[<youragentname,Angel,..]
17     Agents =  [Angel,Lucifer,Streetfighter,Wash]

UCC git Repository :: git.ucc.asn.au