using Svelto.ECS.Internal; namespace Svelto.ECS { static class TypeSafeDictionaryFactory where T : struct, IEntityComponent { public static ITypeSafeDictionary Create() { return new TypeSafeDictionary(1); } public static ITypeSafeDictionary Create(uint size) { return new TypeSafeDictionary(size); } } }