8 lines
222 B
C#
8 lines
222 B
C#
namespace GodotTools.IdeMessaging
|
|
{
|
|
public interface IHandshake
|
|
{
|
|
string GetHandshakeLine(string identity);
|
|
bool IsValidPeerHandshake(string handshake, out string identity, ILogger logger);
|
|
}
|
|
}
|