This commit is contained in:
MuHua-123
2025-01-08 18:02:44 +08:00
parent a08bd06617
commit 8f387837db
46 changed files with 5196 additions and 117 deletions
@@ -0,0 +1,14 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class UIGlobalPage : ModuleUIPage {
protected override void Awake() => ModuleCore.GlobalPage = this;
private void Start() {
string url = "https://neiyihuizhouilabtest.zgfzjy.cn/api/client/color/categroies";
DataRequestGet request = new DataRequestGet(url);
request.OnCallback = (obj) => { Debug.Log(obj); };
WebRequest.Send(request);
}
}