CapersProject/Assets/02.Scripts/Prop/Tycoon/Pot.cs

14 lines
315 B
C#
Raw Normal View History

using BlueWater.Uis;
namespace BlueWater.Tycoons
{
public class Pot : Cookware
{
protected override void OnEnable()
{
base.OnEnable();
CurrentDailyFoodUi = TycoonUiManager.Instance.TycoonManagementUi.CookMenuUi.DailyFoodMenuUi.InitializePot(this);
}
}
}