15 lines
346 B
C#
15 lines
346 B
C#
using System.Collections.Generic;
|
|
using Fantasy;
|
|
using Fantasy.Entitas;
|
|
|
|
namespace NBF
|
|
{
|
|
public class PlayerItemRod : PlayerItem
|
|
{
|
|
public override void Init(Player player, ItemInfo bindInfo)
|
|
{
|
|
//var binds = RoleModel.Instance.GetBindItems(item.Id);
|
|
base.Init(player, bindInfo);
|
|
}
|
|
}
|
|
} |