16 lines
652 B
C#
16 lines
652 B
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="UxrNetworkRigidbodyFlags.cs" company="VRMADA">
|
|
// Copyright (c) VRMADA, All rights reserved.
|
|
// </copyright>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
namespace UltimateXR.Networking
|
|
{
|
|
/// <summary>
|
|
/// Describes the different options for rigidbody network synchronization.
|
|
/// </summary>
|
|
public enum UxrNetworkRigidbodyFlags
|
|
{
|
|
None = 0,
|
|
All = None // Leave for future implementations
|
|
}
|
|
} |