Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
351B

  1. using System;
  2. using Svelto.ECS.Internal;
  3. namespace Svelto.ECS
  4. {
  5. public interface IEntityBuilder
  6. {
  7. void BuildEntityViewAndAddToList(ref ITypeSafeDictionary dictionary, EGID entityID, object[] implementors);
  8. ITypeSafeDictionary Preallocate(ref ITypeSafeDictionary dictionary, int size);
  9. Type GetEntityType();
  10. }
  11. }