canto/Assets/Scripts/Item/IItem.cs
2025-08-14 19:11:32 -04:00

15 lines
314 B
C#

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<StringConstant> Tags { get; }
}
}