验证码

This commit is contained in:
2025-08-06 14:59:33 +08:00
parent 910242abd2
commit c07242fb6a
3 changed files with 2004 additions and 1610 deletions
@@ -0,0 +1,22 @@
using System;
using UnityEngine;
using UnityEngine.UI;
namespace AibisDream.FixSystem
{
/// <summary>
/// 验证码系统
/// 随机出现,非阻塞
/// </summary>
public class VerificationCodeSystem : MonoBehaviour
{
private Image _target;
private Image _slot;
private Slider _slider;
private void Awake()
{
}
}
}