mirror of
https://github.com/godotengine/godot-csharp-vscode.git
synced 2025-12-31 21:48:32 +03:00
15 lines
421 B
C#
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});
|
|
}
|
|
}
|
|
}
|