ProjectDDD/Assets/_DDD/_Scripts/Restaurant/Environment/IInteractionSubsystemOwner.cs
Jeonghyeon Ha a7d741b81e 레스토랑 상호작용 시스템 개선:
- 고객 AI 주문 시작/대기/가용성 로직 정리 및 안정성 향상
- IInteractionSubsystemOwner 및 Order Subsystem 연동 보강
- PlayerInteraction/InteractionComponent 이벤트 흐름 수정
- Wait 주문 솔버 로직 보정
- 고객 기본/주문 서브트리 에셋 업데이트
2025-08-28 14:52:21 +09:00

11 lines
308 B
C#

using System;
using UnityEngine;
namespace DDD
{
public interface IInteractionSubsystemOwner
{
public bool TryGetSubsystemObject<T>(out IInteractionSubsystemObject<T> subsystemObject) where T : Enum;
public bool TryGetSubsystemEnumType<T>(out T subsystemType) where T : Enum;
}
}