mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
12 lines
252 B
C#
12 lines
252 B
C#
|
|
|||
|
using Cysharp.Threading.Tasks;
|
|||
|
using Plugins.JNGame.Network;
|
|||
|
|
|||
|
public class JNGSocket : JNSocket
|
|||
|
{
|
|||
|
protected override async UniTask<string> GetUrl()
|
|||
|
{
|
|||
|
await UniTask.NextFrame();
|
|||
|
return "ws://127.0.0.1:8080/websocket";
|
|||
|
}
|
|||
|
}
|