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

15 lines
373 B
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.StateChanges
{
/// <summary>
/// Denotes a kind of change of a button state.
/// </summary>
public enum ButtonStateChangeKind
{
Pressed,
Released
}
}