mirror of
https://github.com/godotengine/godot-csharp-visualstudio.git
synced 2026-01-05 22:10:19 +03:00
15 lines
350 B
C#
15 lines
350 B
C#
using EnvDTE;
|
|
using Mono.Debugging.Soft;
|
|
using Mono.Debugging.VisualStudio;
|
|
|
|
namespace GodotAddinVS.Debugging
|
|
{
|
|
internal class GodotStartInfo : StartInfo
|
|
{
|
|
public GodotStartInfo(SoftDebuggerStartArgs args, DebuggingOptions options, Project startupProject) :
|
|
base(args, options, startupProject)
|
|
{
|
|
}
|
|
}
|
|
}
|