Start of scene class.
[naja.git] / naja / scenes / scene.py
diff --git a/naja/scenes/scene.py b/naja/scenes/scene.py
new file mode 100644 (file)
index 0000000..d85dbab
--- /dev/null
@@ -0,0 +1,16 @@
+"""
+Base Scene class.
+"""
+
+
+class Scene(object):
+    """
+    A scene within the game.
+
+    E.g. Splash screen, game board, credits, win, lose.
+    """
+    def __init__(self):
+        pass
+
+    def handle_event(self):
+        pass