2025-09-05 21:40:01 +00:00
|
|
|
using CodeJay.Enum;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2025-09-04 23:20:04 +00:00
|
|
|
public class MissionSuccessPopup_Set : uScrollViewMgr
|
|
|
|
|
{
|
2025-09-05 21:40:01 +00:00
|
|
|
public void Set(List<ECardType> lst)
|
2025-09-04 23:20:04 +00:00
|
|
|
{
|
2025-09-05 21:40:01 +00:00
|
|
|
if (lst != null)
|
|
|
|
|
Set_ScrollView(lst);
|
2025-09-04 23:20:04 +00:00
|
|
|
else
|
2025-09-05 21:40:01 +00:00
|
|
|
Set_ScrollView(MissionOpenPopup_Main.MissionCards);
|
2025-09-04 23:20:04 +00:00
|
|
|
}
|
|
|
|
|
}
|