14 lines
265 B
C#
14 lines
265 B
C#
namespace Module.NavigationTool.Editor.Toolbar
|
|
{
|
|
public interface IToolbarSettings
|
|
{
|
|
string Title { get; }
|
|
|
|
#if UNITY_6000_3_OR_NEWER
|
|
bool EnableDraw { get; }
|
|
#endif
|
|
|
|
void Initialize();
|
|
void Draw();
|
|
}
|
|
} |