// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.UI.UnityInputModule.Controls
{
public partial class UxrToggleGroup
{
#region Public Types & Data
///
/// Enumerates the possible initial states, telling which child is currently selected.
///
public enum InitState
{
///
/// Initial state is determined by the state at edit-time.
///
DontChange,
///
/// First child is toggled on, the rest are toggled off.
///
FirstChild
}
#endregion
}
}