1namespace Unity.VisualScripting 2{ 3 public interface IProxyableNotifyCollectionChanged<T> 4 { 5 bool ProxyCollectionChange { get; set; } 6 7 void BeforeAdd(T item); 8 9 void AfterAdd(T item); 10 11 void BeforeRemove(T item); 12 13 void AfterRemove(T item); 14 } 15}