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.

IEnginesRoot.cs 399B

7 years ago
9 years ago
9 years ago
7 years ago
9 years ago
123456789101112131415161718
  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(short entityID, short groupID, EntityDescriptor ED);
  13. }
  14. }