#if UNITY_ECS using Unity.Jobs; namespace Svelto.ECS.SveltoOnDOTS { /// /// this interface exists to allow the user to submig entities explicitly /// public interface ISveltoOnDOTSSubmission { void SubmitEntities(JobHandle jobHandle); } } #endif