using GFramework.Core.architecture; using Godot; namespace GFramework.Godot.architecture; public interface IGodotArchitectureExtension where T : Architecture, new() { Node Node { get; } void OnAttach(Architecture architecture); void OnDetach(); }