This commit is contained in:
CortexCore
2023-09-01 14:33:54 +08:00
parent 4fadd3a530
commit 8ef5c7ec0a
451 changed files with 1048940 additions and 2028 deletions

View File

@@ -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);