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 onChoose=null); } }