14 lines
233 B
C#
14 lines
233 B
C#
using NBF;
|
|
|
|
namespace NBC
|
|
{
|
|
public partial class ItemInfo
|
|
{
|
|
private ItemConfig _config;
|
|
|
|
public ItemConfig Config
|
|
{
|
|
get { return _config ??= ItemConfig.Get(ConfigId); }
|
|
}
|
|
}
|
|
} |