A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4namespace osu.Framework.Input.StateChanges
5{
6 /// <summary>
7 /// Denotes a kind of change of a button state.
8 /// </summary>
9 public enum ButtonStateChangeKind
10 {
11 Pressed,
12 Released
13 }
14}