diff --git a/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs b/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs index 9153907..082f69b 100644 --- a/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs +++ b/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs @@ -1,3 +1,4 @@ +using System.Threading.Tasks; using Godot; using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence; @@ -8,12 +9,32 @@ public partial class RunMenuItem : HBoxContainer public SharpIdeProjectModel Project { get; set; } = null!; private Label _label = null!; private Button _runButton = null!; + private Button _stopButton = null!; public override void _Ready() { _label = GetNode