14 lines
318 B
C#
Raw Normal View History

2024-02-01 19:06:51 +08:00
using Cysharp.Threading.Tasks;
2024-01-26 19:15:07 +08:00
using Plugins.JNGame.Network;
2024-02-01 19:06:51 +08:00
namespace Game.Plugins.App
2024-01-26 19:15:07 +08:00
{
public class JNGSocket : JNSocket
{
protected override async UniTask<string> GetUrl()
{
2024-01-30 19:22:27 +08:00
await UniTask.NextFrame();
2024-02-20 18:39:12 +08:00
return "ws://192.168.0.126:8080/websocket";
2024-01-26 19:15:07 +08:00
}
}
}