FIRST
CI / Go Backend (push) Canceled after 0s

This commit is contained in:
xyou
2026-08-07 23:39:47 +08:00
parent f2105bf14c
commit 9500c4c80a
52 changed files with 3801 additions and 0 deletions
@@ -0,0 +1,9 @@
using UnityEngine;
namespace RedCircuit.Net
{
/// <summary>REST API 客户端,封装用户认证、商店、蓝图等 HTTP 请求。</summary>
public class ApiClient : MonoBehaviour
{
}
}
@@ -0,0 +1,10 @@
{
"name": "RedCircuit.Net",
"rootNamespace": "RedCircuit.Net",
"references": [],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"autoReferenced": true,
"defineConstraints": []
}
@@ -0,0 +1,9 @@
using UnityEngine;
namespace RedCircuit.Net
{
/// <summary>同步管理器,处理多人协作模式下的电路增量 Delta 同步与冲突解决。</summary>
public class SyncManager : MonoBehaviour
{
}
}
@@ -0,0 +1,9 @@
using UnityEngine;
namespace RedCircuit.Net
{
/// <summary>WebSocket 客户端,维持与 relay-server 的长连接,处理实时消息收发。</summary>
public class WsClient : MonoBehaviour
{
}
}