using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
public interface ITextChangable
{
UnityEvent<object> OnTextChange { get; }
}