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:
@ -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 (
|
||||
|
Reference in New Issue
Block a user