mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
15 lines
317 B
C#
15 lines
317 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()
|
|
{
|
|
return "ws://localhost:8080/websocket";
|
|
}
|
|
}
|
|
} |