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.

IUECSSubmissionEngine.cs 241B

123456789101112
  1. #if UNITY_ECS
  2. using Unity.Entities;
  3. namespace Svelto.ECS.Extensions.Unity
  4. {
  5. public interface IUECSSubmissionEngine : IJobifiedEngine
  6. {
  7. EntityCommandBuffer ECB { get; set;}
  8. EntityManager EM { get; set;}
  9. }
  10. }
  11. #endif