Files
Nocturnis/src/UIElements/Layers/IDashboardLayer.cs
2024-09-29 15:39:37 +01:00

10 lines
167 B
C#

using Godot;
using Nocturnis.Godot;
namespace Nocturnis.UIElements.Layers;
public interface IDashboardLayer : INode
{
IDashboardTab DashboardTab { get; set; }
}