2025-08-21 10:12:06 +00:00
|
|
|
using UnityEngine;
|
|
|
|
|
2025-08-21 07:40:49 +00:00
|
|
|
namespace DDD
|
|
|
|
{
|
|
|
|
public enum RestaurantCustomerBlackboardKey
|
|
|
|
{
|
|
|
|
SelfGameObject,
|
2025-08-28 03:55:21 +00:00
|
|
|
CustomerDataId,
|
2025-08-21 10:12:06 +00:00
|
|
|
CurrentInteractionTarget,
|
2025-08-21 07:40:49 +00:00
|
|
|
}
|
|
|
|
|
2025-08-27 08:25:11 +00:00
|
|
|
public interface ICustomerBlackboard
|
2025-08-21 07:40:49 +00:00
|
|
|
{
|
2025-08-28 03:55:21 +00:00
|
|
|
void SetCustomerData(string inCustomerDataId);
|
2025-08-21 07:40:49 +00:00
|
|
|
}
|
|
|
|
}
|