MoonTools.ECS/src/IHasEntity.cs

8 lines
91 B
C#

namespace MoonTools.ECS
{
public interface IHasEntity
{
Entity Entity { get; }
}
}