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