This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
station_obscurum_unity/Assets/FishNet/Runtime/Transporting/Channels.cs

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
}
}