1234567891011121314151617181920 |
- using System;
- namespace CommonTickBattle.Battle.Host
- {
- public interface ISession
- {
- string PlayerUUID { get; }
- /// <summary>
- /// 发送给客户端
- /// </summary>
- /// <param name="msg"></param>
- void Send(TBMessage msg);
- /// <summary>
- /// 监听客户端消息
- /// </summary>
- event Action<ISession, TBRequest> OnReceived;
- }
- }
|