@@ -0,0 +1,9 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace RedCircuit.Auth
|
||||
{
|
||||
/// <summary>认证管理器,处理注册、登录、Token 刷新与会话管理。</summary>
|
||||
public class AuthManager : MonoBehaviour
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace RedCircuit.Auth
|
||||
{
|
||||
/// <summary>OAuth 客户端,支持 Google / GitHub / Discord 第三方快捷登录。</summary>
|
||||
public class OAuthClient : MonoBehaviour
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "RedCircuit.Auth",
|
||||
"rootNamespace": "RedCircuit.Auth",
|
||||
"references": [],
|
||||
"includePlatforms": [],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": []
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace RedCircuit.Auth
|
||||
{
|
||||
/// <summary>Token 存储,安全保存 Access Token 与 Refresh Token,支持自动刷新。</summary>
|
||||
public class TokenStore : MonoBehaviour
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user