From 64773e80d831bb438e4483855fd653994d56b88e Mon Sep 17 00:00:00 2001 From: NTG_Lenovo Date: Thu, 7 Aug 2025 13:15:52 +0900 Subject: [PATCH] =?UTF-8?q?todo=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../_DDD/_Scripts/RestaurantEvent/RestaurantOpenEventSolver.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Assets/_DDD/_Scripts/RestaurantEvent/RestaurantOpenEventSolver.cs b/Assets/_DDD/_Scripts/RestaurantEvent/RestaurantOpenEventSolver.cs index 68c499998..b6b5dd398 100644 --- a/Assets/_DDD/_Scripts/RestaurantEvent/RestaurantOpenEventSolver.cs +++ b/Assets/_DDD/_Scripts/RestaurantEvent/RestaurantOpenEventSolver.cs @@ -14,6 +14,8 @@ public bool ExecuteInteraction(IInteractor interactor, IInteractable interactabl public bool CanInteract() { + // TODO : 영업 가능한 상태인지 조건 추가 (최소 요리, 요리도구 배치 등) + GameFlowState currentGameFlowState = GameFlowManager.Instance.GameFlowDataSo.CurrentGameState; return currentGameFlowState == GameFlowState.ReadyForRestaurant; }