TH1/Unity/Assets/Scripts/Model/Share/Module/Message/IMessageSessionHandler.cs
2025-07-17 18:26:28 +08:00

12 lines
205 B
C#

using System;
namespace ET
{
public interface IMessageSessionHandler
{
void Handle(Session session, object message);
Type GetMessageType();
Type GetResponseType();
}
}