mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 20:49:33 +08:00
13 lines
407 B
C#
13 lines
407 B
C#
using Milimoe.FunGame.Core.Interface.Base;
|
|
using Milimoe.FunGame.Core.Library.Common.Network;
|
|
using Milimoe.FunGame.Core.Library.Constant;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.HTTP
|
|
{
|
|
public interface IHTTPClient : IBaseSocket
|
|
{
|
|
public Task<SocketResult> Send(SocketMessageType type, params object[] objs);
|
|
public SocketObject SocketObject_Handler(SocketObject objs);
|
|
}
|
|
}
|