修改表结构,修改物品详情,增加物品品质描边

This commit is contained in:
2025-10-21 23:15:31 +08:00
parent 4ee5d0885c
commit af7592331b
41 changed files with 595 additions and 305 deletions

View File

@@ -0,0 +1,14 @@
using NBF;
namespace NBC
{
public partial class ItemInfo
{
private ItemConfig _config;
public ItemConfig Config
{
get { return _config ??= ItemConfig.Get(ConfigId); }
}
}
}