2025-08-21 10:12:06 +00:00
|
|
|
using UnityEngine;
|
|
|
|
|
2025-08-21 07:40:49 +00:00
|
|
|
namespace DDD
|
|
|
|
{
|
|
|
|
public enum RestaurantCustomerBlackboardKey
|
|
|
|
{
|
|
|
|
SelfGameObject,
|
|
|
|
CustomerData,
|
2025-08-21 10:12:06 +00:00
|
|
|
CurrentInteractionTarget,
|
2025-08-21 07:40:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public interface IRestaurantCustomerBlackboard
|
|
|
|
{
|
|
|
|
void SetCustomerData(CustomerData inCustomerData);
|
2025-08-21 10:12:06 +00:00
|
|
|
void SetCurrentInteractionTarget(GameObject targetGameObject);
|
|
|
|
GameObject GetCurrentInteractionTarget();
|
2025-08-21 07:40:49 +00:00
|
|
|
}
|
|
|
|
}
|