using System; namespace Unity.VisualScripting { public interface INotifyCollectionChanged { event Action ItemAdded; event Action ItemRemoved; event Action CollectionChanged; } }