This commit is contained in:
2025-11-17 18:21:49 +09:00
parent 13ed537b23
commit 86611ce092
160 changed files with 7829 additions and 452 deletions
@@ -28,8 +28,8 @@ class GameResultArgs {
/// (예: 다음 레벨 잠금 해제)
final Future<void> Function(String playerName) onProgressSave;
/// 팝업이 닫힐 때 게임 화면을 닫기 위한 콜백
final VoidCallback onScreenClose;
// ❌ [삭제] onScreenClose 콜백 제거
// final VoidCallback onScreenClose;
GameResultArgs({
required this.gameType,
@@ -40,6 +40,7 @@ class GameResultArgs {
this.userName,
required this.scoreFormatter,
required this.onProgressSave,
required this.onScreenClose,
// ❌ [삭제]
// required this.onScreenClose,
});
}