1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00
Files
godot/modules/mono/editor/GodotTools/GodotTools.IdeMessaging/IHandshake.cs
2020-05-09 21:49:40 +02: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);
}
}