using System;
using System.Collections.Generic;
namespace NEG.UI.Popup
{
    public interface IDefaultPopup : IPopup
    {
        /// 
        /// Sets content based on provided data.
        /// 
        /// popup title
        /// popup content
        /// list of tuples (name, action on click), to set buttons. Do not pass here popup closing logic, implementing class should do it
        public void SetContent(string title, string content, List<(string name, Action action)> options);
    }
}