using System.Collections; using System.Runtime.InteropServices; using System.Collections.Generic; using UnityEngine; namespace KairoEngine.Core { public struct JobEvent { public int code; public JobEvent(int code) { this.code = code; } } }