Files
Alexei Stukov f858c841d7 Allow use of Visual Studio command line arguments (#31)
* Allow debug command line args
2022-09-01 22:48:15 +02:00

16 lines
388 B
C#

using EnvDTE;
using Mono.Debugging.Soft;
using Mono.Debugging.VisualStudio;
namespace GodotAddinVS.Debugging
{
internal class GodotStartInfo : StartInfo
{
public string StartArguments;
public GodotStartInfo(SoftDebuggerStartArgs args, DebuggingOptions options, Project startupProject) :
base(args, options, startupProject)
{
}
}
}