Unity-WebSocket/Assets/FishNet/Runtime/Object/NetworkBehaviour/EmptyNetworkBehaviour.cs

13 lines
249 B
C#
Raw Normal View History

2025-06-28 07:58:54 +00:00

namespace FishNet.Object
{
/// <summary>
/// This may be added at runtime to find objects without any network scripts, beneath a NetworkObject.
/// </summary>
public class EmptyNetworkBehaviour : NetworkBehaviour
{
}
}