2023-05-08 15:56:10 +03:00

19 lines
392 B
C#

namespace FishNet.Transporting
{
/// <summary>
/// Channel which data is sent or received.
/// </summary>
public enum Channel : byte
{
/// <summary>
/// Data will be sent ordered reliable.
/// </summary>
Reliable = 0,
/// <summary>
/// Data will be sent unreliable.
/// </summary>
Unreliable = 1
}
}