Files
XCharts/Scripts/UI/Interface/IPropertyChanged.cs

12 lines
148 B
C#
Raw Normal View History

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