| using System;  | 
| using UnityEngine;  | 
| using UnityEngine.UI;  | 
| public class ItemsConfirmCell : CellView  | 
| {  | 
|     [SerializeField] ItemCell itemCell;  | 
|     [SerializeField] Text itemName;  | 
|   | 
|     public void Display(int index)  | 
|     {  | 
|         int itemID = ConfirmCancel.getItems[index].id;  | 
|         itemCell.Init(new ItemCellModel(itemID, false, (ulong)ConfirmCancel.getItems[index].countEx));  | 
|         itemCell.button.SetListener(() =>  | 
|         {  | 
|             ItemTipUtility.Show(itemID);  | 
|         });  | 
|         itemName.text = ItemConfig.Get(itemID).ItemName;  | 
|     }  | 
| }  |