Files
TEngine/Assets/GameScripts/HotFix/GameLogic/UI/Common/Widget/UILoopItemWidget.cs
ALEXTANG 53f0ecb6c1 [+] UI循环列表拓展与示例
[+] UI循环列表拓展与示例
2023-08-10 23:25:43 +08:00

14 lines
290 B
C#

namespace GameLogic
{
public class UILoopItemWidget : SelectItemBase
{
public LoopListViewItem LoopItem { set; get; }
public int Index { private set; get; }
public virtual void UpdateItem(int index)
{
Index = index;
}
}
}