14 lines
314 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-04 16:17:39 +08:00
return "ws://127.0.0.1:8080/websocket";
2024-01-26 19:15:07 +08:00
}
}
}