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.

22 lines
393B

  1. namespace Svelto.ECS.Internal
  2. {
  3. public interface IHandleEntityViewEngine : IEngine
  4. {
  5. void Add(IEntityView entityView);
  6. void Remove(IEntityView entityView);
  7. }
  8. }
  9. namespace Svelto.ECS
  10. {
  11. public interface IEngine
  12. {}
  13. public interface IQueryingEntityViewEngine : IEngine
  14. {
  15. IEntityViewsDB entityViewsDB { set; }
  16. void Ready();
  17. }
  18. }