コード例 #1
0
ファイル: CoCProxy.cs プロジェクト: castelbuilder123/CoCSharp
        public CoCProxy()
        {
            PacketLogger = new PacketLogger();
            PacketDumper = new PacketDumper();
            Clients = new List<CoCProxyClient>();
            PacketHandlers = new Dictionary<ushort, PacketHandler>();

            ProxyPacketHandlers.RegisterHanlders(this);
        }
コード例 #2
0
ファイル: CoCProxy.cs プロジェクト: maithanhtan/CoCSharp
        public CoCProxy()
        {
            ExceptionLog = new ExceptionLog("exceptions");
            PacketLog = new PacketLog("packets.log");
            PacketLog.AutoSave = true;
            PacketDumper = new PacketDumper();
            Clients = new List<CoCProxyClient>();
            PacketHandlers = new Dictionary<ushort, PacketHandler>();

            ProxyPacketHandlers.RegisterHandlers(this);
        }