X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fevents.py;h=11adab0f7528cbd68e88adf32275d4ab39ff8be9;hb=23bc655a89f4ac16e2b17a5f359192d1d9268648;hp=e34f74043b31209fc690eb95f357860d3fbfecf6;hpb=2a9f5c76556f00f631ea10a6cba44a92bdd27512;p=naja.git diff --git a/naja/events.py b/naja/events.py index e34f740..11adab0 100644 --- a/naja/events.py +++ b/naja/events.py @@ -32,24 +32,17 @@ 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" - @classmethod - def post(cls): - super(SelectEvent, cls).post() + +class PlayerMoved(NajaEvent): + # This is used to signal to widgets that care that the player has moved. + TYPE = "PLAYER_MOVED"