forked from project-redbud/FunGame-Core
9 lines
213 B
C#
9 lines
213 B
C#
namespace Milimoe.FunGame.Core.Interface.Entity
|
|
{
|
|
public interface IItem : IActiveEnable, IRelateCharacter
|
|
{
|
|
public string Description { get; }
|
|
public double Price { get; set; }
|
|
}
|
|
}
|