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.

19 lines
395B

  1. using Svelto.ECS.Internal;
  2. namespace Svelto.ECS
  3. {
  4. public interface IEnginesRoot
  5. {
  6. void AddEngine(IEngine engine);
  7. }
  8. public interface IEntityFactory
  9. {
  10. void BuildEntity(int ID, EntityDescriptor ED);
  11. void BuildMetaEntity(int metaEntityID, EntityDescriptor ED);
  12. void BuildEntityInGroup(int entityID, int groupID, EntityDescriptor ED);
  13. }
  14. }