1234567891011121314151617181920 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace KairoEngine.Core
- {
- public enum EventResponseStatus
- {
- OK,
- NotFound,
- EmptyResponse
- }
- public class EventResponse<T>
- {
- public EventResponseStatus status;
- public T value;
- }
- }
|