mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
11 lines
287 B
C#
11 lines
287 B
C#
using Milimoe.FunGame.Core.Interface.Base;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Sockets
|
|
{
|
|
public interface ISocket : IBaseSocket
|
|
{
|
|
public System.Net.Sockets.Socket Instance { get; }
|
|
public bool Connected => Instance != null && Instance.Connected;
|
|
}
|
|
}
|