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

9 lines
161 B
C#
Raw Normal View History

2026-01-17 11:35:49 -05:00
namespace LunaWolfStudios.ScriptableSheets.Samples.DeepInheritance
{
public interface IMeasurable
{
float Mass { get; set; }
float Size { get; set; }
}
}