JobEvent.cs 299 B

123456789101112131415161718
  1. using System.Collections;
  2. using System.Runtime.InteropServices;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. namespace KairoEngine.Core
  6. {
  7. public struct JobEvent
  8. {
  9. public int code;
  10. public JobEvent(int code)
  11. {
  12. this.code = code;
  13. }
  14. }
  15. }