DESKTOP-5RP3AKU\Jisol 9cae51746d 提交
2024-01-31 02:29:59 +08:00

16 lines
359 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.1.23:8080/websocket";
}
}
}