Unity-WebSocket/Assets/FishNet/Runtime/Transporting/TransportConsts.cs

17 lines
336 B
C#
Raw Normal View History

2025-06-28 07:58:54 +00:00
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;
}
}