123456789101112131415161718 |
- 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;
- }
- }
- }
|