16 lines
359 B
C#
Raw Normal View History

2024-01-29 02:28:42 +08:00
using System;
using System.Threading.Tasks;
2024-01-26 19:15:07 +08:00
using Cysharp.Threading.Tasks;
using Plugins.JNGame.Network;
namespace Script.AppImpl
{
public class JNGSocket : JNSocket
{
protected override async UniTask<string> GetUrl()
{
2024-01-30 19:22:27 +08:00
await UniTask.NextFrame();
2024-01-31 02:29:59 +08:00
return "ws://192.168.1.23:8080/websocket";
2024-01-26 19:15:07 +08:00
}
}
}