9 lines
161 B
C#
9 lines
161 B
C#
namespace LunaWolfStudios.ScriptableSheets.Samples.DeepInheritance
|
|
{
|
|
public interface IMeasurable
|
|
{
|
|
float Mass { get; set; }
|
|
float Size { get; set; }
|
|
}
|
|
}
|