You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-17 15:46:33 +09:00
Lots of XML comments added; documentation rebuilt
This commit is contained in:
@@ -26,9 +26,24 @@ namespace Lidgren.Network
|
||||
/// </summary>
|
||||
public enum NetPeerStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// NetPeer is not running; socket is not bound
|
||||
/// </summary>
|
||||
NotRunning = 0,
|
||||
|
||||
/// <summary>
|
||||
/// NetPeer is in the process of starting up
|
||||
/// </summary>
|
||||
Starting = 1,
|
||||
|
||||
/// <summary>
|
||||
/// NetPeer is bound to socket and listening for packets
|
||||
/// </summary>
|
||||
Running = 2,
|
||||
|
||||
/// <summary>
|
||||
/// Shutdown has been requested and will be executed shortly
|
||||
/// </summary>
|
||||
ShutdownRequested = 3,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user