mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 05:10:12 +00:00
12 lines
148 B
C#
12 lines
148 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
namespace XCharts
|
|
{
|
|
public interface IPropertyChanged
|
|
{
|
|
void OnChanged();
|
|
}
|
|
}
|
|
|