mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 04:29:36 +08:00
10 lines
254 B
C#
10 lines
254 B
C#
namespace Milimoe.FunGame.Core.Interface.Entity
|
|
{
|
|
public interface IItem : IActiveEnable, IRelateCharacter
|
|
{
|
|
public string Describe { get; set; }
|
|
public decimal Price { get; set; }
|
|
public char Key { get; set; }
|
|
}
|
|
}
|