summaryrefslogtreecommitdiff
path: root/Client/Assembly-CSharp/InnerNet/DisconnectReasons.cs
blob: 1d9c4a6d72ad31420842cc90f751bcd694852957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;

namespace InnerNet
{
	public enum DisconnectReasons
	{
		ExitGame,
		GameFull,
		GameStarted,
		GameNotFound,
		IncorrectVersion = 5,
		Banned,
		Kicked,
		Custom,
		Destroy = 16,
		Error,
		IncorrectGame,
		ServerRequest,
		ServerFull,
		IntentionalLeaving = 208,
		FocusLostBackground = 207,
		FocusLost = 209,
		NewConnection
	}
}