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

1234567891011121314
  1. #if UNITY_ECS
  2. using Unity.Jobs;
  3. namespace Svelto.ECS.SveltoOnDOTS
  4. {
  5. /// <summary>
  6. /// this interface exists to allow the user to submig entities explicitly
  7. /// </summary>
  8. public interface ISveltoOnDOTSSubmission
  9. {
  10. void SubmitEntities(JobHandle jobHandle);
  11. }
  12. }
  13. #endif