2025-08-19 07:52:09 +00:00
|
|
|
using UnityEngine;
|
|
|
|
using UnityEngine.AddressableAssets;
|
2025-08-19 11:00:37 +00:00
|
|
|
using UnityEngine.Rendering;
|
2025-08-19 07:52:09 +00:00
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
{
|
|
|
|
[CreateAssetMenu(fileName = "RestaurantCustomerData", menuName = "RestaurantData/RestaurantCustomerData", order = 0)]
|
|
|
|
public class RestaurantCustomerData : ScriptableObject
|
|
|
|
{
|
|
|
|
[SerializeField] private AssetReferenceGameObject _customerPrefab;
|
|
|
|
public AssetReferenceGameObject CustomerPrefab => _customerPrefab;
|
2025-08-19 11:00:37 +00:00
|
|
|
|
|
|
|
[SerializeField] private SerializedDictionary<CustomerType, AssetReference> _customerBehaviorData;
|
|
|
|
public SerializedDictionary<CustomerType, AssetReference> CustomerBehaviorData => _customerBehaviorData;
|
2025-08-19 07:52:09 +00:00
|
|
|
}
|
|
|
|
}
|