Project_WL/Assets/Script/UI/PC/Info/PCCostumeCollection_Effect.cs

17 lines
451 B
C#

using System.Collections.Generic;
public class PCCostumeCollection_Effect : uScrollViewMgr
{
List<JobMainStatData> statDatas = new List<JobMainStatData>
{
new JobMainStatData { stat = eStat.STR },
new JobMainStatData { stat = eStat.DEX },
new JobMainStatData { stat = eStat.INT },
new JobMainStatData { stat = eStat.LUK },
};
public override void Set()
{
Set_ScrollView(statDatas);
}
}