using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class UIListCell : MonoBehaviour
{
public int Index => mIndex;
protected int mIndex;
public void SetIndex(int pIndex)
mIndex = pIndex;
}