FunGame-Core/Interface/Base/IClientSocket.cs
milimoe b08d62d6f8
Fixed #15 (#17)
* Fix #15; Start to Rebuild Architecture.

* Fixed #15
2023-04-21 01:06:23 +08:00

15 lines
519 B
C#

using Milimoe.FunGame.Core.Library.Constant;
namespace Milimoe.FunGame.Core.Interface.Base
{
public interface IClientSocket : ISocket
{
public bool Receiving { get; }
public void StartReceiving(Task t);
public SocketResult Send(SocketMessageType type, params object[] objs);
public Library.Common.Network.SocketObject Receive();
public Library.Common.Network.SocketObject[] ReceiveArray();
public void BindEvent(Delegate Method, bool Remove = false);
}
}