Add rendering to scenes and fix handle_event.
[naja.git] / naja / scenes / scene.py
index 13cafc302bbd8f09277c92e982e524e17ab2c559..c82427d565790299f5cab195958a84df635a46d3 100644 (file)
@@ -18,5 +18,8 @@ class Scene(object):
     def exit(self):
         pass
 
-    def handle_event(self):
+    def render(self, surface):
+        pass
+
+    def handle_event(self, ev):
         pass