X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fevents.py;h=1b57ee0dc3244bc0c7dc2077485f7671b0ec6ad5;hb=67e79ba3fbe96590efa50a73fe983c2810efdd0f;hp=0e102edf9229d0de4fbdc327514e0b08046144c8;hpb=d9ded620200ed74517f17f83f01313470ffca222;p=naja.git diff --git a/naja/events.py b/naja/events.py index 0e102ed..1b57ee0 100644 --- a/naja/events.py +++ b/naja/events.py @@ -32,16 +32,12 @@ class SceneChangeEvent(NajaEvent): 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"