Files
godot-monodevelop-addin/GodotAddin/Debugging/GodotDebuggerStartInfo.cs
2020-07-03 23:05:00 -04:00

16 lines
410 B
C#

using Mono.Debugging.Soft;
namespace GodotAddin.Debugging
{
public class GodotDebuggerStartInfo : SoftDebuggerStartInfo
{
public GodotExecutionCommand GodotCmd { get; }
public GodotDebuggerStartInfo(GodotExecutionCommand godotCmd, SoftDebuggerRemoteArgs softDebuggerConnectArgs) :
base(softDebuggerConnectArgs)
{
GodotCmd = godotCmd;
}
}
}