2024-12-11 21:21:27 +08:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace AxibugEmuOnline.Client
|
|
|
|
{
|
|
|
|
public class SettingItemSelector : ItemSelector
|
|
|
|
{
|
|
|
|
protected override RectTransform OnGetTemplate(object data)
|
|
|
|
{
|
|
|
|
if (data is BgColorSettings) return ItemList[0];
|
|
|
|
else return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|