namespace KYFramework.Network { public static class OpcodeHelper { private static readonly HashSet ignoreDebugLogMessageSet = new HashSet { }; public static bool IsNeedDebugLogMessage(ushort opcode) { if (ignoreDebugLogMessageSet.Contains(opcode)) { return false; } return true; } } }