namespace Svelto.ECS { public interface IEntityDescriptor { IEntityBuilder[] entitiesToBuild { get; } } static class EntityDescriptorTemplate where TType : IEntityDescriptor, new() { static EntityDescriptorTemplate() { descriptor = new TType(); } public static IEntityDescriptor descriptor { get; } } }