Files
TEngine/Assets/GameScripts/HotFix/GameLogic/UI/Common/Widget/UILoopGridItemWidget.cs
ALEXTANG 0f2ad3c71d [+] UI循环列表拓展Grid 用法和List一样
[+] UI循环列表拓展Grid 用法和List一样
2023-08-18 16:32:08 +08:00

14 lines
293 B
C#

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