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.

25 lines
484B

  1. namespace Svelto.ECS
  2. {
  3. public interface IStepEngine : IEngine
  4. {
  5. void Step();
  6. string name { get; }
  7. }
  8. public interface IStepEngine<T> : IEngine
  9. {
  10. void Step(in T _param);
  11. string name { get; }
  12. }
  13. //this must stay IStepEngine as it may be part of a group itself
  14. public interface IStepGroupEngine : IStepEngine
  15. {
  16. }
  17. public interface IStepGroupEngine<T> : IStepEngine<T>
  18. {
  19. }
  20. }