diff gamelib/main.py @ 854:3577c51029f1 default tip

Remove Suspended Sentence. pyntnclick is the library we extracted from it
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 21 Jun 2014 22:15:54 +0200
parents f95830b58336
children
line wrap: on
line diff
--- a/gamelib/main.py	Sat Jun 21 22:04:35 2014 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-import scenes
-
-from constants import SSConstants
-from menu import SSMenuScreen
-from endscreen import EndScreen
-from ss_state import SSState
-
-from pyntnclick.main import GameDescription
-
-
-class SuspendedSentence(GameDescription):
-
-    INITIAL_SCENE = scenes.INITIAL_SCENE
-    SCENE_LIST = scenes.SCENE_LIST
-    SCREENS = {
-            'menu': SSMenuScreen,
-            'end': EndScreen,
-            }
-    START_SCREEN = 'menu'
-
-    def game_state_class(self):
-        return SSState
-
-    def game_constants(self):
-        return SSConstants()
-
-
-def main():
-    ss = SuspendedSentence()
-    return ss.main()