mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-12-05 08:09:02 +00: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);
|
|
}
|
|
}
|