16 lines
367 B
C#
16 lines
367 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class CollectionRelicUI_Scroll : uScrollViewMgr
|
||
|
|
{
|
||
|
|
public override void Set()
|
||
|
|
{
|
||
|
|
Set_ScrollView(table_reliclist.Ins.Get_DataList());
|
||
|
|
}
|
||
|
|
|
||
|
|
public RelicListTableData Get_FirstRelic()
|
||
|
|
{
|
||
|
|
return list_CardBase[0].Get_Data() as RelicListTableData;
|
||
|
|
}
|
||
|
|
}
|