Mirror of Svelto.ECS because we're a fan of it
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

17 řádky
452B

  1. #if UNITY_ECS
  2. namespace Svelto.ECS.SveltoOnDOTS
  3. {
  4. /// <summary>
  5. /// SubmissionEngine is a dedicated DOTS ECS Svelto.ECS engine that allows using the DOTS ECS
  6. /// EntityCommandBuffer for fast creation of DOTS entities
  7. /// </summary>
  8. public interface ISveltoOnDOTSStructuralEngine
  9. {
  10. DOTSOperationsForSvelto DOTSOperations { get; set; }
  11. string name { get; }
  12. void OnPostSubmission();
  13. }
  14. }
  15. #endif