com.alicizax.unity.network/Runtime/Network/INetworkManager.cs
2025-03-18 19:41:26 +08:00

14 lines
405 B
C#

using AlicizaX.Runtime;
using Cysharp.Threading.Tasks;
using Fantasy.Network;
namespace AlicizaX.Network.Runtime
{
public interface INetworkManager : IModule
{
void SetHeartInterval(int heartInterval);
UniTask Initialize(params System.Reflection.Assembly[] assemblies);
void Connect(string remoteAddress, NetworkProtocolType networkProtocolType, bool isHttps);
}
}