namespace MLAPI.Connection
{
///
/// A class representing a client that is currently in the process of connecting
///
public class PendingClient
{
///
/// The ClientId of the client
///
public ulong ClientId;
///
/// The state of the connection process for the client
///
public State ConnectionState;
///
/// The states of a connection
///
public enum State
{
///
/// Client is in the process of doing the connection handshake
///
PendingConnection
}
}
}