Factor out EIGHT_BIT_SCALE.
[naja.git] / naja / events.py
index 4d3fb07f80a94bc5502edfa048b3e0e017c80393..1b57ee0dc3244bc0c7dc2077485f7671b0ec6ad5 100644 (file)
@@ -32,6 +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"
+
+
+class SelectEvent(NajaEvent):
+    TYPE = "SELECT"