using System.Collections.Generic; using KitsuneCafe.SOAP; using UnityEngine; namespace KitsuneCafe.ItemSystem { public interface IItem { string Id { get; } string DisplayName { get; } string Description { get; } Sprite Icon { get; } IReadOnlyCollection Tags { get; } } }