PC-20230316NUNE\Administrator 68c4d5e811 提交帧同步案例
2024-01-26 19:15:07 +08:00

14 lines
303 B
C#

using System.Threading.Tasks;
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";
}
}
}