16 lines
360 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();
return "ws://192.168.0.118:8080/websocket";
2024-01-26 19:15:07 +08:00
}
}
}