Files
XCharts/Scripts/UI/Interface/IPropertyChanged.cs
2019-05-11 04:33:54 +08:00

12 lines
148 B
C#

using UnityEngine;
using System.Collections;
namespace XCharts
{
public interface IPropertyChanged
{
void OnChanged();
}
}