// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- namespace UltimateXR.Core { /// /// Enumerates the available hands. /// public enum UxrHandSide { /// /// Left hand. /// Left = 0, /// /// Right hand. /// Right = 1 } }