Files
XRLib/Assets/Scripts/UVC/UIToolkit/ToolBar/Data/IUTKToolBarItem.cs
2026-02-19 18:40:37 +09:00

14 lines
333 B
C#

#nullable enable
namespace UVC.UIToolkit
{
/// <summary>
/// 툴바에 추가될 수 있는 모든 항목(버튼, 구분선 등)의 기본 인터페이스입니다.
/// </summary>
public interface IUTKToolBarItem
{
/// <summary>아이템 고유 식별자</summary>
string ItemId { get; }
}
}