16 lines
313 B
C#
16 lines
313 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
public class LobbyTopUI : MonoBehaviourSingletonuScrollViewMgr<LobbyTopUI>
|
||
|
|
{
|
||
|
|
List<int> list_moneyid = new List<int> { 101, 201, 301 };
|
||
|
|
|
||
|
|
private void OnEnable()
|
||
|
|
{
|
||
|
|
Set();
|
||
|
|
}
|
||
|
|
|
||
|
|
public override void Set()
|
||
|
|
{
|
||
|
|
Set_ScrollView(list_moneyid);
|
||
|
|
}
|
||
|
|
}
|