Mirror of Svelto.ECS because we're a fan of it
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

14 satır
299B

  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