using Unity.Burst; using Unity.Jobs; namespace ECSTest { [BurstCompile] public struct ServerSendJob : IJobParallelFor { public void Execute(int index) { } } }