using System; namespace CommonTickBattle.Battle.Host { public interface ISession { string PlayerUUID { get; } /// /// 发送给客户端 /// /// void Send(TBMessage msg); /// /// 监听客户端消息 /// event Action OnReceived; } }