mono/editor/GodotTools/GodotTools.IdeMessaging/IHandshake.cs

9 lines
222 B
C#
Raw Normal View History

2023-05-23 17:54:30 +02:00
namespace GodotTools.IdeMessaging
{
public interface IHandshake
{
string GetHandshakeLine(string identity);
bool IsValidPeerHandshake(string handshake, out string identity, ILogger logger);
}
}