1
0
forked from cgvr/DeltaVR

deltavr multiplayer 2.0

This commit is contained in:
Toomas Tamm
2023-05-08 15:56:10 +03:00
parent 978809a002
commit 07b9b9e2f4
10937 changed files with 2968397 additions and 1521012 deletions

View File

@@ -0,0 +1,43 @@
namespace FishNet.Transporting
{
/// <summary>
/// States the local connection can be in.
/// </summary>
public enum LocalConnectionState : byte
{
/// <summary>
/// Connection is fully stopped.
/// </summary>
Stopped = 0,
/// <summary>
/// Connection is starting but not yet established.
/// </summary>
Starting = 1,
/// <summary>
/// Connection is established.
/// </summary>
Started = 2,
/// <summary>
/// Connection is stopping.
/// </summary>
Stopping = 3
}
/// <summary>
/// States a remote client can be in.
/// </summary>
public enum RemoteConnectionState : byte
{
/// <summary>
/// Connection is fully stopped.
/// </summary>
Stopped = 0,
/// <summary>
/// Connection is established.
/// </summary>
Started = 2,
}
}