Files
SoulliesOfficial 7ee2894a63 整合SLSUtilities
2026-01-17 11:35:49 -05:00

12 lines
340 B
C#

namespace LunaWolfStudios.ScriptableSheets.Samples.DeepInheritance
{
public interface IHarvestable
{
Sowable SowableChild { get; set; }
HarvestableCategory HarvestableCategory { get; set; }
float HarvestYield { get; set; }
SeasonalHarvest SeasonalHarvestStart { get; set; }
SeasonalHarvest SeasonalHarvestEnd { get; set; }
}
}