15 lines
317 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()
{
return "ws://localhost:8080/websocket";
}
}
}