4 lines
178 B
Python
4 lines
178 B
Python
class StartMenuController:
|
|
def __init__(self, start_menu_view, game_controller):
|
|
self.start_menu_view = start_menu_view
|
|
self.game_controller = game_controller |