zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/Hotfix/Logic/Model/Module/Message/OpcodeHotfixHelper.cs

22 lines
713 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ET
{
public static class OpcodeHotfixHelper
{
public static void Init()
{
OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.Frame_ClickMap);
OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.M2C_PathfindingResult);
OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.C2G_HeartBeat);
OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.G2C_HeartBeat);
OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.C2G_Ping);
OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.G2C_Ping);
}
}
}