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

16 lines
425 B
C#

using Nocturnis.Godot;
using Nocturnis.Hermeteus;
using Nocturnis.Hermeteus.BracketSystem;
using Nocturnis.Hermeteus.BracketSystem.Processors;
namespace Nocturnis.UIElements.Layers;
public interface IInstructionLayer : INode
{
IInstructionAgent Bra { get; set; }
IInstructionArrowManager Pointer { get; set; }
IInstructionAgent Ket { get; set; }
IBracketProcessor Processor { get; set; }
void Init();
}