Files
Ragon/Ragon.Server/Sources/IRagonServer.cs
T
2023-04-13 20:42:05 +04:00

9 lines
188 B
C#

using Ragon.Server.IO;
namespace Ragon.Server;
public interface IRagonServer
{
RagonContext? ResolveContext(INetworkConnection connection);
RagonContext? ResolveContext(string id);
}