Files
osu-framework/osu.Framework/Input/TouchSource.cs
2023-06-07 08:16:24 +03:00

62 lines
1.3 KiB
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Framework.Input
{
/// <summary>
/// A collection of available touch sources used for touch input methods.
/// </summary>
public enum TouchSource
{
/// <summary>
/// The first touch source.
/// </summary>
Touch1,
/// <summary>
/// The second touch source.
/// </summary>
Touch2,
/// <summary>
/// The third touch source.
/// </summary>
Touch3,
/// <summary>
/// The fourth touch source.
/// </summary>
Touch4,
/// <summary>
/// The fifth touch source.
/// </summary>
Touch5,
/// <summary>
/// The sixth touch source.
/// </summary>
Touch6,
/// <summary>
/// The seventh touch source.
/// </summary>
Touch7,
/// <summary>
/// The eighth touch source.
/// </summary>
Touch8,
/// <summary>
/// The ninth touch source.
/// </summary>
Touch9,
/// <summary>
/// The tenth and last available touch source.
/// </summary>
Touch10,
}
}