bracket system

This commit is contained in:
h z
2024-07-29 17:24:31 +01:00
parent 5fbbbe83a1
commit bae0a52e3f
36 changed files with 258 additions and 36 deletions

View File

@@ -1,8 +1,12 @@
using Nocturnis.Communicators;
using Nocturnis.Dashboards;
namespace Nocturnis.UIElements;
public interface IDashboardTab
public interface IDashboardTab : INodeInterface
{
IEnumerable<IBaseCommunicator> AllCommunicators { get; }
void Init();
void AddDashboard(IDashboard dashboard);
bool[] Used { get; set; }
}

View File

@@ -0,0 +1,9 @@
namespace Nocturnis.UIElements;
public interface IInstructionHint : INodeInterface
{
void Load(string content);
void Load(string content, Action callBack);
void Clean();
void Clean(Action callBack);
}

View File

@@ -0,0 +1,9 @@
using Godot;
namespace Nocturnis.UIElements.Layers;
public interface IDashboardLayer : INodeInterface
{
IDashboardTab DashboardTab { get; set; }
}

View File

@@ -0,0 +1,6 @@
namespace Nocturnis.UIElements.Layers;
public interface IWindowLayer : INodeInterface
{
}