using System.Collections.Generic; namespace ETModel { public static class OpcodeHelper { private static readonly HashSet ignoreDebugLogMessageSet = new HashSet { OuterOpcode.C2R_Ping, OuterOpcode.R2C_Ping, }; public static bool IsNeedDebugLogMessage(ushort opcode) { if (ignoreDebugLogMessageSet.Contains(opcode)) { return false; } return true; } public static bool IsClientHotfixMessage(ushort opcode) { return opcode > 10000; } } }