12 lines
252 B
C#
Raw Normal View History

2024-08-17 14:27:18 +08:00

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";
}
}