1
This commit is contained in:
@@ -53,7 +53,7 @@ namespace BITKit
|
||||
/// <summary>
|
||||
/// 可寻址路径,该路径用于查找物品
|
||||
/// </summary>
|
||||
string AdressablePath { get; }
|
||||
string AddressablePath { get; }
|
||||
/// <summary>
|
||||
/// 物品描述
|
||||
/// </summary>
|
||||
@@ -81,13 +81,13 @@ namespace BITKit
|
||||
#region 字段
|
||||
public int Id;
|
||||
public string Name;
|
||||
public string AdressablePath { get; set; }
|
||||
public string AddressablePath { get; set; }
|
||||
public string Description;
|
||||
public ItemQuality Quality;
|
||||
/// <summary>
|
||||
/// 本地属性
|
||||
/// </summary>
|
||||
Property property = new();
|
||||
private Property property = new();
|
||||
#endregion
|
||||
#region 接口的隐式实现
|
||||
int IBasicItem.Id => Id;
|
||||
@@ -124,7 +124,7 @@ namespace BITKit
|
||||
{
|
||||
Id=item.Id;
|
||||
Name = item.Name;
|
||||
AdressablePath = item.AdressablePath;
|
||||
AddressablePath = item.AddressablePath;
|
||||
Description = item.Description;
|
||||
Quality=item.Quality;
|
||||
CopyPropertiesFrom(item);
|
||||
|
Reference in New Issue
Block a user