19 lines
471 B
C#
19 lines
471 B
C#
using CodeStage.AntiCheat.ObscuredTypes;
|
|
using System.Collections.Generic;
|
|
|
|
public class FarmSelectEnchantUI : uScrollViewMgr
|
|
{
|
|
public static FarmSelectEnchantUI Ins;
|
|
private void Start() { Ins = this; }
|
|
|
|
SD_FarmSlot m_SlotData;
|
|
|
|
public void Set(SD_FarmSlot slotdata)
|
|
{
|
|
base.Set();
|
|
m_SlotData = slotdata;
|
|
Set_ScrollView(table_enchanlist.Ins.Get_DataList());
|
|
}
|
|
|
|
public SD_FarmSlot Get_SlotData() { return m_SlotData; }
|
|
} |