namespace Svelto.ECS.Internal { static class TypeSafeDictionaryUtilities { internal static EGIDMapper ToEGIDMapper(this ITypeSafeDictionary dic, ExclusiveGroupStruct groupStructId) where T:struct, IEntityComponent { var mapper = new EGIDMapper(groupStructId, dic); return mapper; } } }