Files
Cielonos/Packages/com.lunawolfstudios.scriptablesheets/Samples~/DeepInheritance/Scripts/Harvestables/IHarvestable.cs

12 lines
340 B
C#
Raw Normal View History

2026-01-17 11:35:49 -05:00
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; }
}
}