Mirror of Svelto.ECS because we're a fan of it
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

13 lignes
379B

  1. namespace Svelto.ECS.Internal
  2. {
  3. static class TypeSafeDictionaryUtilities
  4. {
  5. internal static EGIDMapper<T> ToEGIDMapper<T>(this ITypeSafeDictionary<T> dic,
  6. ExclusiveGroupStruct groupStructId) where T:struct, _IInternalEntityComponent
  7. {
  8. var mapper = new EGIDMapper<T>(groupStructId, dic);
  9. return mapper;
  10. }
  11. }
  12. }