mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 12:09:34 +08:00
10 lines
236 B
C#
10 lines
236 B
C#
using Milimoe.FunGame.Core.Library.Constant;
|
|
|
|
namespace Milimoe.FunGame.Desktop.Library.Interface
|
|
{
|
|
public interface ISocketCallBack
|
|
{
|
|
public void SocketHandler(SocketMessageType type, params object[]? objs);
|
|
}
|
|
}
|