view gamelib/main.py @ 563:18396b937647 pyntnclick

Added ignores. Apparently bzr does not allow this locally for a specific repo.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 11 Feb 2012 15:22:16 +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()