
- 고객 AI 주문 시작/대기/가용성 로직 정리 및 안정성 향상 - IInteractionSubsystemOwner 및 Order Subsystem 연동 보강 - PlayerInteraction/InteractionComponent 이벤트 흐름 수정 - Wait 주문 솔버 로직 보정 - 고객 기본/주문 서브트리 에셋 업데이트
11 lines
308 B
C#
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;
|
|
}
|
|
} |