Files
BITKit/Src/Core/UX/IUXPopUp.cs
CortexCore b7b89ee71a 1
2024-03-31 23:31:00 +08:00

11 lines
166 B
C#

using System.Collections;
using System.Collections.Generic;
namespace BITKit.UX
{
public interface IUXPopup
{
void Popup(string content,float duration=3f);
}
}