data/main.py (view raw)
1__author__ = 'justinarmstrong'
2
3from . import setup, tools
4from . states import town
5from . import constants as c
6
7def main():
8 """Add states to control here"""
9 run_it = tools.Control(setup.ORIGINAL_CAPTION)
10 state_dict = {c.TOWN: town.Town()}
11
12 run_it.setup_states(state_dict, c.TOWN)
13 run_it.main()