A game about forced loneliness, made by TACStudios
1using System; 2using System.Collections.Generic; 3 4namespace Unity.VisualScripting 5{ 6 public interface IMergedCollection<T> : ICollection<T> 7 { 8 bool Includes<TI>() where TI : T; 9 bool Includes(Type elementType); 10 } 11}