class QuitGameEvent(NajaEvent):
TYPE = "QUIT_GAME"
- @classmethod
- def post(cls):
- super(QuitGameEvent, cls).post()
-
class InvalidateTheWorld(NajaEvent):
# This is used to signal to all the widgets that the world has changed
# and cached state may need to be recreated
TYPE = "INVALIDATE"
- @classmethod
- def post(cls):
- super(InvalidateTheWorld, cls).post()
-
class SelectEvent(NajaEvent):
TYPE = "SELECT"
-
- @classmethod
- def post(cls):
- super(SelectEvent, cls).post()