레스토랑 오더 솔버 코멘트 변경

This commit is contained in:
Jeonghyeon Ha 2025-08-27 11:23:43 +09:00
parent a8ff9a1707
commit fa2ebd4510
4 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,7 @@
namespace DDD
{
public class ContinueRestaurantOrder
{
// 이미 있는 인터랙션 타겟을 대상으로 진행함
}
}

View File

@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: d0b954edf40f4172964dbd6e4fe22b1a
timeCreated: 1755772289

View File

@ -13,7 +13,8 @@ public bool ExecuteInteractionSubsystem(IInteractor interactor, IInteractable in
public bool CanExecuteInteractionSubsystem(IInteractor interactor = null, IInteractable interactable = null,
ScriptableObject payloadSo = null)
{
return true;
// Interactable's CurrentInteractor is me? => Can execute
return false;
}
}
}

View File

@ -7,6 +7,10 @@ public class RestaurantOrderSolver_Wait : MonoBehaviour, IInteractionSubsystemSo
public bool ExecuteInteractionSubsystem(IInteractor interactor, IInteractable interactable, ScriptableObject payloadSo = null)
{
// TODO : DO SOMETHING!!!
/* TODO
* OnInteracted에서 , , ? CanInteractTo에서 ?
* IInteractable CurrentInteractor를 ?
*/
return true;
}