PC-20230316NUNE\Administrator b6461675a8 提交代码
2024-01-31 19:16:05 +08:00

16 lines
360 B
C#

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