// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- using System; namespace UltimateXR.Networking { /// /// Enumerates the different capabilities of a Networking SDK. /// [Flags] public enum UxrNetworkCapabilities { /// /// The SDK has support for components that add network synchronization of components. /// NetworkTransform = 1 << 0, /// /// The SDK has support for components that add network synchronization of components. /// NetworkRigidbody = 1 << 1, /// /// The SDK has support for voice transmission. /// Voice = 1 << 16 } }