mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
16 lines
359 B
C#
16 lines
359 B
C#
using System;
|
|
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()
|
|
{
|
|
await UniTask.NextFrame();
|
|
return "ws://192.168.1.23:8080/websocket";
|
|
}
|
|
}
|
|
} |