19 lines
406 B
C#
19 lines
406 B
C#
#if !UNITY_6000_3_OR_NEWER
|
|
using System;
|
|
using UnityEngine.UIElements;
|
|
|
|
namespace Module.NavigationTool.Editor.Toolbar
|
|
{
|
|
internal sealed class ToolbarIMGUIContainer : IMGUIContainer
|
|
{
|
|
public int Priority { get; }
|
|
|
|
public ToolbarIMGUIContainer(Action onGuiHandler, int priority)
|
|
: base(onGuiHandler)
|
|
{
|
|
Priority = priority;
|
|
}
|
|
}
|
|
}
|
|
#endif
|