Example #1
0
File: troop.py Project: Aluriak/TIA
 def __str__(self):
     return Agent.__str__(self)
Example #2
0
File: troop.py Project: Aluriak/TIA
 def __str__(self):
     return Agent.__str__(self)
Example #3
0
File: troop.py Project: Aluriak/TIA
 def __init__(self, coords, name=None, player=None):
     Agent.__init__(self, name, player)
     Placable.__init__(self, coords)
     Movable.__init__(self)
     Drawable.__init__(self, None)
     Reportable.__init__(self)
Example #4
0
File: troop.py Project: Aluriak/TIA
 def __init__(self, coords, name=None, player=None):
     Agent.__init__(self, name, player)
     Placable.__init__(self, coords)
     Movable.__init__(self)
     Drawable.__init__(self, None)
     Reportable.__init__(self)