comparison mamba/engine.py @ 248:de3b4048e54a

Hook up tile arrow rotation
author Stefano Rivera <stefano@rivera.za.net>
date Thu, 15 Sep 2011 00:40:30 +0200
parents 7a9be9add4c7
children 49fe66680ff8
comparison
equal deleted inserted replaced
247:8e9fcdf98a6b 248:de3b4048e54a
106 TYPE = "LEVEL_COMPLETED" 106 TYPE = "LEVEL_COMPLETED"
107 107
108 @classmethod 108 @classmethod
109 def post(cls): 109 def post(cls):
110 super(LevelCompletedEvent, cls).post() 110 super(LevelCompletedEvent, cls).post()
111
112
113 class FlipArrowsEvent(UserEvent):
114
115 TYPE = "FLIP_ARROWS"
116
117 @classmethod
118 def post(cls):
119 super(FlipArrowsEvent, cls).post()