view pyntnclick/tools/utils.py @ 624:1c5ef1e02e30 pyntnclick

Remove hacky start_game() that wasn't meant to be committed
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 11 Feb 2012 21:52:42 +0200
parents ebc48b397fd5
children 4a933444c99b
line wrap: on
line source

# Misc utils I don't know where else to put


def list_scenes(get_initial_state):
    """List the scenes in the state"""
    state = get_initial_state()
    print 'Available scenes are : '
    for scene in state.scenes:
        print '    ', scene
    print 'Available details are : '
    for detail in state.detail_views:
        print '    ', detail