PC-20230316NUNE\Administrator 04043cc6fc 提交
2024-02-04 16:17:39 +08:00

14 lines
314 B
C#

using Cysharp.Threading.Tasks;
using Plugins.JNGame.Network;
namespace Game.Plugins.App
{
public class JNGSocket : JNSocket
{
protected override async UniTask<string> GetUrl()
{
await UniTask.NextFrame();
return "ws://127.0.0.1:8080/websocket";
}
}
}