1
This commit is contained in:
22
Src/Core/UX/IUXInputBox.cs
Normal file
22
Src/Core/UX/IUXInputBox.cs
Normal 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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user