Start of scene class.
authorSimon Cross <hodgestar@gmail.com>
Sun, 11 May 2014 14:45:31 +0000 (16:45 +0200)
committerSimon Cross <hodgestar@gmail.com>
Sun, 11 May 2014 14:45:31 +0000 (16:45 +0200)
naja/scenes/__init__.py [new file with mode: 0644]
naja/scenes/scene.py [new file with mode: 0644]

diff --git a/naja/scenes/__init__.py b/naja/scenes/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
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