22 lines
418 B
C#
22 lines
418 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |