X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fscenes%2Fscene.py;fp=naja%2Fscenes%2Fscene.py;h=d85dbab5db8937da03e7213a403ea73438cc9b91;hb=c78d27a40453bd280d5e40919c11412559f3ff31;hp=0000000000000000000000000000000000000000;hpb=1b13f9cca9f5db16419a74474159008ddc82bf27;p=naja.git 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