Ejemplo n.º 1
0
 def __init__(self, work=None):
     brain = WorkerBrain(self, work)
     Termite.__init__(self, brain, 2)
Ejemplo n.º 2
0
 def __init__(self, hatch_object):
   Termite.__init__(self, LarvaBrain(self), 1)
   self.hatch_object = hatch_object
Ejemplo n.º 3
0
 def __init__(self):
     Termite.__init__(self, 2)
Ejemplo n.º 4
0
 def __init__(self, work = None):
   brain = QueenBrain(self, work)
   Termite.__init__(self, brain, 6)