Kleiner Anfang für Dialog system

This commit is contained in:
Dominik
2023-05-28 11:44:55 +02:00
parent 370380751b
commit 792c90a214
702 changed files with 109467 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
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<Image> icons { get; set; } //= new List<Image>();
List<int> indexes { get; set; }
RPGTalk rpgtalk { get; set; }
void RepopulateImages();
bool FitImagesOnText(int y);
}
}