From a778a9d58c898a35c29332d3d88a84773af3f7b5 Mon Sep 17 00:00:00 2001 From: NTG_Lenovo Date: Thu, 7 Aug 2025 13:11:39 +0900 Subject: [PATCH] =?UTF-8?q?=EC=83=81=ED=98=B8=EC=9E=91=EC=9A=A9=20solver?= =?UTF-8?q?=20=EC=9D=B8=ED=84=B0=ED=8E=98=EC=9D=B4=EC=8A=A4=EC=97=90=20Can?= =?UTF-8?q?Interact=ED=95=A8=EC=88=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/_DDD/_Scripts/GameEvent/IInteractable.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Assets/_DDD/_Scripts/GameEvent/IInteractable.cs b/Assets/_DDD/_Scripts/GameEvent/IInteractable.cs index e24b03898..09ad1dd15 100644 --- a/Assets/_DDD/_Scripts/GameEvent/IInteractable.cs +++ b/Assets/_DDD/_Scripts/GameEvent/IInteractable.cs @@ -26,5 +26,6 @@ public interface IInteractor public interface IInteractionSolver { bool ExecuteInteraction(IInteractor interactor, IInteractable interactable, ScriptableObject interactionPayloadSo = null); + bool CanInteract(); } }