11 lines
244 B
C#
11 lines
244 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
public class PCAwakenUI_Set : uScrollViewMgr
|
||
|
|
{
|
||
|
|
List<eStat> list = new List<eStat> { eStat.STR, eStat.DEX, eStat.INT, eStat.LUK };
|
||
|
|
|
||
|
|
public override void Set()
|
||
|
|
{
|
||
|
|
Set_ScrollView(list);
|
||
|
|
}
|
||
|
|
}
|