X-Git-Url: https://git.ucc.asn.au/?p=progcomp10.git;a=blobdiff_plain;f=src%2Farenas%2FPythonSampleAgents.py;fp=src%2Farenas%2FPythonSampleAgents.py;h=c0c1134fb0c172438a2103f99b6a9d43041b47d5;hp=0000000000000000000000000000000000000000;hb=32894ceef149b03d0c32e663c281a44079b48673;hpb=41c24a0f37549124160ea46ba0c55e2e0c6d35d0 diff --git a/src/arenas/PythonSampleAgents.py b/src/arenas/PythonSampleAgents.py new file mode 100755 index 0000000..c0c1134 --- /dev/null +++ b/src/arenas/PythonSampleAgents.py @@ -0,0 +1,14 @@ +#!/usr/bin/python2.5 +'''PythonSampleAgentsArena.py +An areana that runs the sample bots in python. +Written by Daniel Axtens for the UCC Programming Competition in 2010. + +Licensed under an MIT-style license: see the LICENSE file for details. +''' + +from SampleAgents import Angel, Lucifer, Dummy, Frenchie, Streetfighter + + +# Import and add your agents here: +class PythonSampleAgentsArena: + Agents = [Angel,Lucifer,Streetfighter,Frenchie] \ No newline at end of file