17 lines
325 B
C#
Raw Normal View History

2025-11-18 19:22:47 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2025-11-20 14:43:50 +08:00
public enum TurnManagerStateEnum
{
WAIT = 0,
SETUP_STATE = 1,
}
public enum RequestsMethods // 事件方法
2025-11-18 19:22:47 +08:00
{
GET = 1, // 获取
PUT = 3, // 修改
POST = 0, // 默认发送, 不需要任何返回
DELETE = 2, // 删除
}