21 lines
490 B
C#
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);
|
|
}
|
|
}
|
|
|
|
}
|