mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-21 19:49:34 +08:00
16 lines
428 B
C#
16 lines
428 B
C#
using Milimoe.FunGame.Core.Library.Constant;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Base
|
|
{
|
|
public interface IBaseSocket
|
|
{
|
|
public SocketRuntimeType Runtime { get; }
|
|
public Guid Token { get; }
|
|
public string ServerAddress { get; }
|
|
public int ServerPort { get; }
|
|
public string ServerName { get; }
|
|
public string ServerNotice { get; }
|
|
public void Close();
|
|
}
|
|
}
|