2025-08-14 11:35:16 +00:00
|
|
|
using Sirenix.OdinInspector;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
{
|
|
|
|
[CreateAssetMenu(fileName = "RestaurantManagementDataSo", menuName = "RestaurantData/RestaurantManagementDataSo", order = 0)]
|
|
|
|
public class RestaurantManagementDataSo : ScriptableObject
|
|
|
|
{
|
|
|
|
public ItemSlotUi ItemSlotUiPrefab;
|
|
|
|
public TasteHashTagSlotUi TasteHashTagSlotUiPrefab;
|
|
|
|
|
2025-08-16 23:57:23 +00:00
|
|
|
public Material FoodTasteMaterial;
|
|
|
|
public Material DrinkTasteMateria;
|
2025-08-17 06:43:02 +00:00
|
|
|
|
|
|
|
public RuntimeAnimatorController TodayMenuSlotUiAnimatorController;
|
|
|
|
public RuntimeAnimatorController InventorySlotUiAnimatorController;
|
2025-08-14 11:35:16 +00:00
|
|
|
}
|
|
|
|
}
|