2025-09-26 18:08:07 +09:00
|
|
|
#nullable enable
|
|
|
|
|
using Gpm.Ui;
|
|
|
|
|
|
|
|
|
|
namespace UVC.UI.List
|
|
|
|
|
{
|
2025-12-08 21:06:05 +09:00
|
|
|
/// <summary>
|
|
|
|
|
/// PrefabGrid 아이템 데이터.
|
|
|
|
|
/// 이벤트는 PrefabGrid에서 중앙 관리됩니다.
|
|
|
|
|
/// </summary>
|
2025-09-26 18:08:07 +09:00
|
|
|
public class PrefabGridItemData : InfiniteScrollData
|
|
|
|
|
{
|
|
|
|
|
public string Id = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 설명
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ItemName = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 이미지 프리팹 경로
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ImagePrefabPath = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 객체 프리팹 경로
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ObjectPrefabPath = string.Empty;
|
|
|
|
|
|
2025-11-06 15:51:29 +09:00
|
|
|
/// <summary>
|
2025-12-08 21:06:05 +09:00
|
|
|
/// 임의의 태그/키 값.
|
2025-11-06 15:51:29 +09:00
|
|
|
/// </summary>
|
2025-12-08 21:06:05 +09:00
|
|
|
public string? Tag;
|
2025-09-26 18:08:07 +09:00
|
|
|
}
|
|
|
|
|
}
|