Client, launcher, and too much stuff to document.

This commit is contained in:
John Michael Gross
2016-09-24 13:08:36 -07:00
parent e153870182
commit 7488384fb8
59 changed files with 1908 additions and 219 deletions

18
Piston/ConnectionState.cs Normal file
View File

@@ -0,0 +1,18 @@
using System;
namespace Piston
{
/// <summary>
/// Identifies a player's current connection state.
/// </summary>
[Flags]
public enum ConnectionState
{
Unknown,
Connected = 1,
Left = 2,
Disconnected = 4,
Kicked = 8,
Banned = 16,
}
}