15 lines
314 B
C#
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; }
|
|
}
|
|
}
|