ADD rudementary main menu, needs refinement

This commit is contained in:
2025-04-19 19:26:58 +02:00
parent 7c025cd8fd
commit 45e81b7182
8 changed files with 195 additions and 33 deletions

13
states/game_state.py Normal file
View File

@@ -0,0 +1,13 @@
class GameState:
def __init__(self, switch_state_callback, screen):
self.switch_state = switch_state_callback
self.screen = screen
def handle_events(self, events):
pass
def update(self):
pass
def draw(self):
pass