mirror of
https://github.com/Dadechin/Unity-WebSocket.git
synced 2025-07-03 20:04:33 +00:00
17 lines
336 B
C#
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;
|
|
|
|
}
|
|
}
|