MoonTools.ECS/src/IHasEntity.cs

7 lines
82 B
C#

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