Moved the high score stuff to the scoreboard because it makes more sense for it to be there even though it is used in the menu.

This commit is contained in:
Storm Dragon
2025-03-15 18:18:22 -04:00
parent 3f8385599b
commit 1dc0ac2a7f
3 changed files with 114 additions and 256 deletions

View File

@ -51,7 +51,11 @@ from .input import get_input, check_for_exit, pause_game
from .display import display_text, initialize_gui
# Import menu functions
from .menu import game_menu, learn_sounds, instructions, credits, donate, exit_game, high_scores, has_high_scores
from .menu import game_menu, learn_sounds, instructions, credits, donate, exit_game
# Update imports to reference Scoreboard methods
high_scores = Scoreboard.displayHighScores
has_high_scores = Scoreboard.hasHighScores
# Import utility functions and Game class
from .utils import (