16 lines
381 B
C#
16 lines
381 B
C#
|
using UnityEngine.UIElements;
|
|||
|
|
|||
|
namespace Paps.UnityToolbarExtenderUIToolkit
|
|||
|
{
|
|||
|
internal class NativeToolbarElement
|
|||
|
{
|
|||
|
public string Id { get; }
|
|||
|
public VisualElement VisualElement { get; }
|
|||
|
|
|||
|
public NativeToolbarElement(string id, VisualElement visualElement)
|
|||
|
{
|
|||
|
Id = id;
|
|||
|
VisualElement = visualElement;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|