6 lines
105 B
C#
6 lines
105 B
C#
|
namespace Tiger.Networking.Game;
|
||
|
|
||
|
public interface IWebSocketServer
|
||
|
{
|
||
|
Task Start(string uriPrefix);
|
||
|
}
|