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
389B

  1. using Svelto.ECS.Internal;
  2. namespace Svelto.ECS.Internal
  3. {
  4. public interface IHandleEntityViewEngineAbstracted : IEngine
  5. {}
  6. }
  7. namespace Svelto.ECS
  8. {
  9. public interface IEngine
  10. {}
  11. public interface IHandleEntityStructEngine<T> : IHandleEntityViewEngineAbstracted
  12. {
  13. void AddInternal(ref T entityView);
  14. void RemoveInternal(ref T entityView);
  15. }
  16. }