summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/NetErrCode.cs
blob: c951cddcd95ba943630f8287112a83d73befe05f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

namespace XMainClient
{
	public enum NetErrCode
	{
		Net_NoError,
		Net_SysError,
		Net_ConnectError,
		Net_SrvNtfError,
		Net_ReconnectFailed,
		Net_Rpc_Delay,
		Net_PauseRecv_Overflow,
		Net_RecvBuff_Overflow,
		Net_SendBuff_Overflow,
		Net_Unknown_Exception
	}
}