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.

15 lines
401B

  1. using System;
  2. using System.Collections.Generic;
  3. using Svelto.ECS.Internal;
  4. namespace Svelto.ECS
  5. {
  6. public interface IEntityBuilder
  7. {
  8. void BuildEntityAndAddToList(ref ITypeSafeDictionary dictionary, EGID egid,
  9. IEnumerable<object> implementors);
  10. ITypeSafeDictionary Preallocate(ref ITypeSafeDictionary dictionary, uint size);
  11. Type GetEntityType();
  12. }
  13. }