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