11 lines
189 B
C#
11 lines
189 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.Events;
|
||
|
|
||
|
|
||
|
public interface ITextChangable
|
||
|
{
|
||
|
UnityEvent<object> OnTextChange { get; }
|
||
|
}
|