This repository has been archived on 2025-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
skolavdf/phr/StickGame/Assets/FishNet/Runtime/Transporting/Channels.cs
2024-03-24 22:21:16 +01:00

19 lines
410 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
}
}