2024-07-16 16:05:53 +00:00
|
|
|
using BlueWater.Uis;
|
2024-07-08 20:06:22 +00:00
|
|
|
|
|
|
|
namespace BlueWater.Tycoons
|
|
|
|
{
|
2024-07-20 11:32:54 +00:00
|
|
|
public class Pot : Cookware
|
2024-07-08 20:06:22 +00:00
|
|
|
{
|
|
|
|
protected override void OnEnable()
|
|
|
|
{
|
|
|
|
base.OnEnable();
|
2024-07-16 16:05:53 +00:00
|
|
|
|
2024-07-20 11:32:54 +00:00
|
|
|
CurrentDailyFoodUi = TycoonUiManager.Instance.TycoonManagementUi.CookMenuUi.DailyFoodMenuUi.InitializePot(this);
|
2024-07-08 20:06:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|