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

14 lines
321 B
C#
Raw Normal View History

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