Rocks.py 345B

12345678910111213
  1. from intelligine.synergy.event.smell.SmellAction import SmellAction
  2. from synergine.synergy.collection.SynergyCollection import SynergyCollection
  3. class Rocks(SynergyCollection):
  4. """
  5. TODO: Rename in Environment
  6. """
  7. def __init__(self, configuration):
  8. super().__init__(configuration)
  9. self._actions = [SmellAction]