Aimbot-ParallelEnv/Assets/XCharts/Runtime/Internal/Misc/IPropertyChanged.cs

10 lines
169 B
C#
Raw Normal View History

2022-10-25 19:07:39 +00:00
namespace XCharts.Runtime
{
/// <summary>
/// 属性变更接口
/// </summary>
public interface IPropertyChanged
{
void OnChanged();
}
}