16 lines
299 B
C#
16 lines
299 B
C#
|
namespace SupaLidlGame.Items;
|
||
|
|
||
|
public interface IItemCollection
|
||
|
{
|
||
|
public System.Collections.Generic.IEnumerable<ItemMetadata> GetItems();
|
||
|
|
||
|
public int Capacity { get; }
|
||
|
}
|
||
|
|
||
|
public interface IItemCollection<T> : IItemCollection
|
||
|
{
|
||
|
public bool Add(T item);
|
||
|
|
||
|
public bool Remove(T item);
|
||
|
}
|