Files
godot-csharp-vscode/GodotDebugSession/GodotMessageHandler.cs
Ignacio Etcheverry 94e3f57d7a Initial commit
2020-05-09 16:24:06 +02:00

15 lines
421 B
C#

using System.Threading.Tasks;
using GodotTools.IdeMessaging;
using GodotTools.IdeMessaging.Requests;
namespace GodotDebugSession
{
public class GodotMessageHandler : ClientMessageHandler
{
protected override Task<Response> HandleOpenFile(OpenFileRequest request)
{
return Task.FromResult<Response>(new OpenFileResponse {Status = MessageStatus.RequestNotSupported});
}
}
}