Assorted bug fixes, remove dead Torch.Launcher project
This commit is contained in:
@@ -8,11 +8,34 @@ namespace Torch.API
|
||||
[Flags]
|
||||
public enum ConnectionState
|
||||
{
|
||||
/// <summary>
|
||||
/// Unknown state.
|
||||
/// </summary>
|
||||
Unknown,
|
||||
|
||||
/// <summary>
|
||||
/// Connected to game.
|
||||
/// </summary>
|
||||
Connected = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Left the game.
|
||||
/// </summary>
|
||||
Left = 2,
|
||||
|
||||
/// <summary>
|
||||
/// Disconnected from the game.
|
||||
/// </summary>
|
||||
Disconnected = 4,
|
||||
|
||||
/// <summary>
|
||||
/// Kicked from the game.
|
||||
/// </summary>
|
||||
Kicked = 8,
|
||||
|
||||
/// <summary>
|
||||
/// Banned from the game.
|
||||
/// </summary>
|
||||
Banned = 16,
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user