mirror of
https://github.com/godotengine/godot-monodevelop-addin.git
synced 2025-12-31 17:48:12 +03:00
15 lines
413 B
C#
15 lines
413 B
C#
using System.Net;
|
|
using Mono.Debugging.Soft;
|
|
|
|
namespace GodotAddin.Debugging
|
|
{
|
|
public class GodotSoftDebuggerArgs : SoftDebuggerRemoteArgs
|
|
{
|
|
public GodotSoftDebuggerArgs(string appName, IPAddress address, int debugPort, int outputPort) : base(appName, address, debugPort, outputPort)
|
|
{
|
|
}
|
|
|
|
public override ISoftDebuggerConnectionProvider ConnectionProvider => null;
|
|
}
|
|
}
|