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

14 lines
319 B
C#
Raw Normal View History

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