ae6441045f7068abb99be068eb59634f17c75b49
[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 modify simulate.py
3
4 from link.externAgent import externAgent
5
6 class c_angel (externAgent):
7         def __init__ (self):
8                 externAgent.__init__(self, "./link/C/agents/c_angel")
9
10 class c_lucifer (externAgent):
11         def __init__ (self):
12                 externAgent.__init__(self, "./link/C/agents/c_lucifer")
13
14 class c_streetfighter (externAgent):
15         def __init__ (self):
16                 externAgent.__init__(self, "./link/C/agents/c_streetfighter")
17
18 class c_frenchie (externAgent):
19         def __init__ (self):
20                 externAgent.__init__(self, "./link/C/agents/c_frenchie")

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