mirror of
https://github.com/Dadechin/Unity-WebSocket.git
synced 2025-07-18 11:14:34 +00:00
23 lines
517 B
C#
23 lines
517 B
C#
|
using FishNet.Managing;
|
|||
|
using FishNet.Managing.Logging;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace FishNet.Object
|
|||
|
{
|
|||
|
|
|||
|
public abstract partial class NetworkBehaviour : MonoBehaviour
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// True if can log for loggingType.
|
|||
|
/// </summary>
|
|||
|
/// <param name="loggingType">Type of logging being filtered.</param>
|
|||
|
/// <returns></returns>
|
|||
|
public bool CanLog(LoggingType loggingType)
|
|||
|
{
|
|||
|
return NetworkManager.CanLog(loggingType);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|