namespace SupaLidlGame.Items; public interface IItemCollection { public System.Collections.Generic.IEnumerable GetItems(); public int Capacity { get; } } public interface IItemCollection : IItemCollection { public bool Add(T item); public bool Remove(T item); }