Files
dungeons/Assets/UltimateXR/Runtime/Scripts/Core/UxrHandSide.cs
2024-08-06 21:58:35 +02:00

23 lines
693 B
C#

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="UxrHandSide.cs" company="VRMADA">
// Copyright (c) VRMADA, All rights reserved.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Core
{
/// <summary>
/// Enumerates the available hands.
/// </summary>
public enum UxrHandSide
{
/// <summary>
/// Left hand.
/// </summary>
Left = 0,
/// <summary>
/// Right hand.
/// </summary>
Right = 1
}
}