aboutsummaryrefslogtreecommitdiff
path: root/src/splitscreen_duo/menu.py
diff options
context:
space:
mode:
authorZoltan Szabatin <[email protected]>2025-03-02 18:38:27 -0800
committerZoltan Szabatin <[email protected]>2025-03-02 18:38:29 -0800
commit225f4a227013443b09a205cabe73886facab4d2b (patch)
tree939ef33031bb2c31cfc3eec96fbc7982ce585784 /src/splitscreen_duo/menu.py
parentrefactor: Move games to proper game enumeration (diff)
downloadsplitscreen-duo-225f4a227013443b09a205cabe73886facab4d2b.tar.xz
splitscreen-duo-225f4a227013443b09a205cabe73886facab4d2b.zip
feat: Add snake and benchmark games
Diffstat (limited to 'src/splitscreen_duo/menu.py')
-rw-r--r--src/splitscreen_duo/menu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/splitscreen_duo/menu.py b/src/splitscreen_duo/menu.py
index e1d97f5..a7bda82 100644
--- a/src/splitscreen_duo/menu.py
+++ b/src/splitscreen_duo/menu.py
@@ -3,9 +3,9 @@ import pygame
import os
from .input import Input
from .command import Command
+from .game import Game
import logging
import json
-from .game import Game
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)