A game about forced loneliness, made by TACStudios
1namespace Unity.VisualScripting 2{ 3 public interface INotifiedCollectionItem 4 { 5 void BeforeAdd(); 6 7 void AfterAdd(); 8 9 void BeforeRemove(); 10 11 void AfterRemove(); 12 } 13}