canto/Assets/Scripts/Item/IItem.cs
2025-10-02 15:28:03 -04:00

15 lines
318 B
C#

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