From e9481a586f4c329b48234e878bea7bc639fcff6f Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Sun, 17 Aug 2025 18:20:34 +1000 Subject: [PATCH] select solution --- src/SharpIDE.Godot/IdeRoot.cs | 20 ++++++++++++++++++++ src/SharpIDE.Godot/IdeRoot.cs.uid | 1 + src/SharpIDE.Godot/IdeRoot.tscn | 23 ++++++++++++++++++++++- 3 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 src/SharpIDE.Godot/IdeRoot.cs create mode 100644 src/SharpIDE.Godot/IdeRoot.cs.uid diff --git a/src/SharpIDE.Godot/IdeRoot.cs b/src/SharpIDE.Godot/IdeRoot.cs new file mode 100644 index 0000000..119f527 --- /dev/null +++ b/src/SharpIDE.Godot/IdeRoot.cs @@ -0,0 +1,20 @@ +using Godot; + +namespace SharpIDE.Godot; + +public partial class IdeRoot : Control +{ + private Button _openSlnButton = null!; + private FileDialog _fileDialog = null!; + public override void _Ready() + { + _openSlnButton = GetNode