Project_WL/Assets/Script/UI/Collection/Relic/CollectionRelicUI_Scroll.cs

12 lines
258 B
C#
Raw Normal View History

2024-12-15 01:39:39 +00:00
public class CollectionRelicUI_Scroll : uScrollViewMgr
{
public override void Set()
{
Set_ScrollView(table_reliclist.Ins.Get_DataList());
}
2025-07-15 19:19:41 +00:00
public RelicCard Get_FirstRelic()
2024-12-15 01:39:39 +00:00
{
2025-07-15 19:19:41 +00:00
return list_CardBase[0] as RelicCard;
2024-12-15 01:39:39 +00:00
}
}