using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using UnityEngine; using UnityEngine.UI; namespace RPGTALK.Texts { public interface ITextWithIcon { Image icon { get; set; } Vector3 iconPosition { get; set; } List icons { get; set; } //= new List(); List indexes { get; set; } RPGTalk rpgtalk { get; set; } void RepopulateImages(); bool FitImagesOnText(int y); } }