10 lines
167 B
C#
10 lines
167 B
C#
using Godot;
|
|
using Nocturnis.Godot;
|
|
|
|
namespace Nocturnis.UIElements.Layers;
|
|
|
|
public interface IDashboardLayer : INode
|
|
{
|
|
IDashboardTab DashboardTab { get; set; }
|
|
|
|
} |