diff --git a/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs b/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs new file mode 100644 index 0000000..9153907 --- /dev/null +++ b/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs @@ -0,0 +1,23 @@ +using Godot; +using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence; + +namespace SharpIDE.Godot.Features.Run; + +public partial class RunMenuItem : HBoxContainer +{ + public SharpIdeProjectModel Project { get; set; } = null!; + private Label _label = null!; + private Button _runButton = null!; + public override void _Ready() + { + _label = GetNode