// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit.UI
{
///
/// Values for user-friendly dimensions settings
///
public enum SelectionModes
{
///
/// Not a valid mode
///
Invalid = -1,
///
/// Just click, no selection
///
Button,
///
/// A selection with two dimensions, selected/unselection.
/// A two mode switch, checkbox, toggle, radial
///
Toggle,
///
/// A selection with more than two dimensions,
/// like one control for Small, Medium, and Large
///
MultiDimension
};
}