Unity-WebSocket/Assets/FishNet/Runtime/Transporting/TransportConsts.cs
2025-06-28 11:28:54 +03:30

17 lines
336 B
C#

using FishNet.Managing;
using System;
using UnityEngine;
namespace FishNet.Transporting
{
public static class TransportConsts
{
/// <summary>
/// Value used when a transport index is not known or set for a connection.
/// </summary>
public const int UNSET_TRANSPORT_INDEX = -1;
}
}