view gamelib/main.py @ 572:e393954e3749 pyntnclick

Move get_current_playlist onto sound object
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 11 Feb 2012 15:53:14 +0200
parents 99a1420097df
children 2d2ea51b73ad
line wrap: on
line source

import scenes

from pyntnclick.main import GameDescription


class SuspendedSentence(GameDescription):

    INITIAL_SCENE = scenes.INITIAL_SCENE
    SCENE_LIST = scenes.SCENE_LIST


def main():
    ss = SuspendedSentence()
    return ss.main()