Net.Like.Xue.Tokyo/Assets/BITKit/Core/UX/IUXDialogue.cs

13 lines
242 B
C#
Raw Normal View History

2024-11-03 16:42:23 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
namespace BITKit.UX
{
public interface IUXDialogue
{
void Show(string content,string title = "Alert",Action confirmAction=null,Action<bool> onChoose=null);
2025-03-10 18:06:44 +08:00
2024-11-03 16:42:23 +08:00
}
}