A game about forced loneliness, made by TACStudios
1using System; 2 3namespace Unity.VisualScripting 4{ 5 public interface INotifyCollectionChanged<T> 6 { 7 event Action<T> ItemAdded; 8 9 event Action<T> ItemRemoved; 10 11 event Action CollectionChanged; 12 } 13}