diff --git a/game_stats.py b/game_stats.py index 048b383..e980171 100644 --- a/game_stats.py +++ b/game_stats.py @@ -9,6 +9,9 @@ class GameStats: # 游戏刚启动时处于非活动状态 self.game_active = False + # 任何情况下都不应重置最高得分 + self.high_score = 0 + def reset_stats(self):