Files

9 lines
198 B
C#
Raw Normal View History

2026-01-17 11:35:49 -05:00
namespace LunaWolfStudios.ScriptableSheets.Samples.DeepInheritance
{
public interface ISowable
{
Harvestable HarvestableParent { get; set; }
SowableCategory SowableCategory { get; set; }
}
}