You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
540 B
21 lines
540 B
6 months ago
|
|
||
|
from . import setup,tools
|
||
|
from .states import main_menu,load_screen,level1
|
||
|
from . import constants as c
|
||
|
|
||
|
|
||
|
def main():
|
||
|
"""Add states to control here."""
|
||
|
run_it = tools.Control(setup.ORIGINAL_CAPTION)
|
||
|
state_dict = {c.MAIN_MENU: main_menu.Menu(),
|
||
|
c.LOAD_SCREEN: load_screen.LoadScreen(),
|
||
|
c.TIME_OUT: load_screen.TimeOut(),
|
||
|
c.GAME_OVER: load_screen.GameOver(),
|
||
|
c.LEVEL1: level1.Level1()}
|
||
|
|
||
|
run_it.setup_states(state_dict, c.MAIN_MENU)
|
||
|
run_it.main()
|
||
|
|
||
|
|
||
|
|