16 lines
223 B
C#
16 lines
223 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UIWidgetsSamples
|
|
{
|
|
[Serializable]
|
|
public class ListViewUnderlineSampleItemDescription
|
|
{
|
|
[SerializeField]
|
|
public Sprite Icon;
|
|
|
|
[SerializeField]
|
|
public string Name;
|
|
}
|
|
}
|