cfclient/Net/BattleHandler.cs
2024-05-22 08:51:14 +08:00

21 lines
490 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Net
{
class BattleHandler : F6.MsgHandler
{
public HandlerDelegate<battle.cs.SMKcpHandshake> SMKcpHandshakeHandler;
public BattleHandler(): base(typeof(battle.cs.CMMessageId_e), typeof(battle.cs.SMMessageId_e))
{
this.RegisterHandler(this.SMKcpHandshakeHandler);
}
}
}