少年修仙传客户端代码仓库
Client_PangDeRong
2018-09-06 56b9c524aa379cfce1ac3a7ab33236dd4bee8a23
System/KnapSack/New/RareItem.cs
@@ -1,14 +1,14 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TableConfig;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TableConfig;
namespace Snxxz.UI
{
    public class RareItem : CommonItemBaisc
    {
        [SerializeField] UIEffect m_RareSfx;
        public override void Init(ItemCellModel model)
        public override void Init(ItemCellModel model, int compareScore = 0)
        {
            if (m_RareSfx != null)
            {
@@ -17,7 +17,7 @@
            base.Init(model);
        }
        public void SetItemRare(ItemCellModel model, int _itemColor = 0)
        public void SetItemRare(ItemCellModel model, int _itemColor = 0, int compareScore = 0)
        {
            if (model == null)
            {
@@ -59,5 +59,5 @@
            }
        }
    }
}
}