You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-21 14:57:09 +00:00
11 lines
297 B
C#
11 lines
297 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace GodotTools.IdeMessaging
|
|
{
|
|
public interface IHandshake
|
|
{
|
|
public string GetHandshakeLine(string identity);
|
|
public bool IsValidPeerHandshake(string handshake, [NotNullWhen(true)] out string? identity, ILogger logger);
|
|
}
|
|
}
|