Project_WL/Assets/Script/Server/BanListUI.cs

15 lines
367 B
C#
Raw Normal View History

2024-12-15 01:39:39 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BanListUI : uScrollViewMgr
{
public void Set(ChatBan chatBan)
{
base.Set();
Set_ScrollView_NotSet(chatBan.m_List.Count);
for (int i = 0; i < chatBan.m_List.Count; i++)
(list_CardBase[i] as BanCard).Set(chatBan.m_List[i]);
}
}