暫無描述
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.

BurstReflectionTestsSeparateAssembly.cs 382B

12345678910111213141516
  1. public class BurstReflectionTestsSeparateAssembly
  2. {
  3. [Unity.Jobs.LowLevel.Unsafe.JobProducerType(typeof(MyJobProducerSeparateAssembly<,>))]
  4. public interface IMyGenericJobSeparateAssembly<T>
  5. {
  6. void Execute();
  7. }
  8. private static class MyJobProducerSeparateAssembly<TJob, T>
  9. {
  10. public static void Execute(ref TJob job)
  11. {
  12. }
  13. }
  14. }