split off c agents into cAgent.py. created a script to churn out a python module...
[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.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_frenchie (cAgent):
19         def __init__ (self):
20                 cAgent.__init__(self, "./link/C/agents/c_frenchie")

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