Colony.py 497B

123456789101112
  1. from synergine.synergy.collection.SynergyCollection import SynergyCollection
  2. from intelligine.synergy.event.move.MoveAction import MoveAction
  3. from intelligine.synergy.event.attack.NearAttackableAction import NearAttackableAction
  4. from intelligine.synergy.event.transport.TakeableAction import TakeableAction
  5. class Colony(SynergyCollection):
  6. def __init__(self, configuration):
  7. super().__init__(configuration)
  8. self._actions = [MoveAction, NearAttackableAction, TakeableAction]