This commit is contained in:
h z
2024-07-12 14:32:16 +01:00
parent f59c6edc39
commit 574d00d4b7
29 changed files with 130 additions and 43 deletions

View File

@@ -5,4 +5,5 @@ namespace Nocturnis.UIElements;
public interface IKeyListener
{
void Register(IKeyListenerModule module);
void Init();
}

View File

@@ -4,7 +4,7 @@ namespace Nocturnis.UIElements;
public interface IPanelViewer
{
Camera2D? PanelViewerCamera { get; set; }
IPanelViewerCamera PanelViewerCamera { get; }
void BackToCenter();
}

View File

@@ -0,0 +1,8 @@
using Godot;
namespace Nocturnis.UIElements;
public interface IPanelViewerCamera
{
Vector2 Zoom { get; set; }
}