13 lines
355 B
C#
13 lines
355 B
C#
![]() |
using AlicizaX.Runtime;
|
|||
|
using Cysharp.Threading.Tasks;
|
|||
|
using Fantasy.Network;
|
|||
|
|
|||
|
namespace AlicizaX.Network.Runtime
|
|||
|
{
|
|||
|
public interface INetworkManager : IModule
|
|||
|
{
|
|||
|
UniTask Initialize(params System.Reflection.Assembly[] assemblies);
|
|||
|
void Connect(string remoteAddress, NetworkProtocolType networkProtocolType, bool isHttps);
|
|||
|
}
|
|||
|
}
|