codot/godot-3.x/modules/mono/editor/GodotTools/GodotTools.IdeMessaging/IHandshake.cs
2022-03-13 13:48:59 +01:00

9 lines
222 B
C#

namespace GodotTools.IdeMessaging
{
public interface IHandshake
{
string GetHandshakeLine(string identity);
bool IsValidPeerHandshake(string handshake, out string identity, ILogger logger);
}
}