10 lines
223 B
C#
10 lines
223 B
C#
namespace LunaWolfStudios.ScriptableSheets.Samples.DeepInheritance
|
|
{
|
|
public interface IEdible
|
|
{
|
|
EdibleCategory EdibleCategory { get; set; }
|
|
Macronutrients Macronutrients { get; set; }
|
|
float Water { get; set; }
|
|
}
|
|
}
|