You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
488 B

1 month ago
using ProtoCSClass;
using xFrame;
namespace CoreGame.Render
{
public class Handle_BossContinueBattleLeave : BaseHandle
{
public override void DoHandle(int eid, object msg)
{
if (msg is CSCBLeaveRes cscbLeaveRes)
{
CoreUIBridge.CoreGamePushCSCBLeaveRes(cscbLeaveRes);
}
else
{
XLog.LogError("Handle_BossContinueBattleLeave DoHandle error");
}
}
}
}