using System;
namespace StrixMusic.Sdk.WinUI.Services.ShellManagement
{
///
/// The input methods supported by the shell.
///
[Flags]
public enum InputMethods
{
///
/// The shell does not support any input methods and will not be shown to the user.
///
None = 0,
///
/// The shell is optimized for use with a mouse.
///
Mouse = 1,
///
/// The shell is optimized for use with a touch screen.
///
Touch = 2,
///
/// The shell is optimized for use with a game controller.
///
Controller = 4,
}
}