From: Simon Cross Date: Sun, 11 May 2014 14:45:31 +0000 (+0200) Subject: Start of scene class. X-Git-Tag: 0.1~430 X-Git-Url: https://git.ctpug.org.za/?a=commitdiff_plain;h=c78d27a40453bd280d5e40919c11412559f3ff31;hp=1b13f9cca9f5db16419a74474159008ddc82bf27;p=naja.git Start of scene class. --- diff --git a/naja/scenes/__init__.py b/naja/scenes/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/naja/scenes/scene.py b/naja/scenes/scene.py new file mode 100644 index 0000000..d85dbab --- /dev/null +++ b/naja/scenes/scene.py @@ -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