This commit is contained in:
CortexCore
2024-07-06 16:14:29 +08:00
parent b3768a7aa8
commit 94de38362e
9 changed files with 111 additions and 21 deletions

View File

@@ -0,0 +1,22 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace BITKit.UX
{
/// <summary>
/// 弹窗输入框
/// </summary>
public interface IUXInputBox
{
/// <summary>
/// 显示指定容器
/// </summary>
/// <param name="container"></param>
void Show(object container);
/// <summary>
/// 关闭
/// </summary>
void Close();
}
}