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.

24 lines
459B

  1. #if UNITY_JOBS
  2. using Unity.Jobs;
  3. namespace Svelto.ECS.SveltoOnDOTS
  4. {
  5. public interface IJobifiedEngine<T> : IEngine
  6. {
  7. JobHandle Execute(JobHandle inputDeps, ref T _param);
  8. string name { get; }
  9. }
  10. public interface IJobifiedEngine : IEngine
  11. {
  12. JobHandle Execute(JobHandle inputDeps);
  13. string name { get; }
  14. }
  15. public interface IJobifiedGroupEngine<T> : IJobifiedEngine<T>
  16. { }
  17. }
  18. #endif