9 lines
198 B
C#
9 lines
198 B
C#
namespace LunaWolfStudios.ScriptableSheets.Samples.DeepInheritance
|
|
{
|
|
public interface ISowable
|
|
{
|
|
Harvestable HarvestableParent { get; set; }
|
|
SowableCategory SowableCategory { get; set; }
|
|
}
|
|
}
|