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.

ISveltoOnDOTSSubmission.cs 490B

1234567891011121314151617
  1. #if UNITY_ECS
  2. using Unity.Jobs;
  3. namespace Svelto.ECS.SveltoOnDOTS
  4. {
  5. /// <summary>
  6. /// Note: we don't want implementations of ISveltoDOTSSubmission
  7. /// to be able to add directly Submission or HandleLifeTime engines as
  8. /// the implementation are not aware of EnginesRoot so cannot satisfy Engines
  9. /// that implement IEngine interfaces
  10. /// </summary>
  11. public interface ISveltoOnDOTSSubmission
  12. {
  13. void SubmitEntities(JobHandle jobHandle);
  14. }
  15. }
  16. #endif