source generator

This commit is contained in:
h z
2024-07-10 07:02:11 +01:00
parent e1a74ad614
commit 5c6e3031d5
35 changed files with 169 additions and 34 deletions

View File

@@ -1,6 +1,10 @@
using Godot;
namespace Nocturnis.UIElements;
public interface IPanelViewer
{
Camera2D? PanelViewerCamera { get; set; }
void BackToCenter();
}

View File

@@ -2,7 +2,7 @@ using Godot;
namespace Nocturnis.UIElements;
public interface ISimpleLabel
public interface ISimpleLabel : ISceneConcept
{
Vector2 Position { get; set; }
Vector2 Size { get; set; }