Files
Ragon/Ragon.Server/Sources/IRagonServer.cs
T

9 lines
188 B
C#
Raw Normal View History

2023-04-13 20:42:05 +04:00
using Ragon.Server.IO;
namespace Ragon.Server;
public interface IRagonServer
{
RagonContext? ResolveContext(INetworkConnection connection);
RagonContext? ResolveContext(string id);
}