Attempt at fixing memory mess.
[progcomp10.git] / src / link / C / c_agents.py
1 # add your agents to this file by copying the definition and adjusting
2 # you then need to make sure there's an arena that imports your agent
3
4 from link.cAgent import cAgent
5
6 class c_angel (cAgent):
7         def __init__ (self):
8                 cAgent.__init__(self, "./link/C/agents/c_angel")
9
10 class c_lucifer (cAgent):
11         def __init__ (self):
12                 cAgent.__init__(self, "./link/C/agents/c_lucifer")
13
14 class c_streetfighter (cAgent):
15         def __init__ (self):
16                 cAgent.__init__(self, "./link/C/agents/c_streetfighter")
17
18 class c_wash (cAgent):
19         def __init__ (self):
20                 cAgent.__init__(self, "./link/C/agents/c_wash")

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