// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Input.States; namespace osu.Framework.Input.Events { /// /// An event representing the release of a tablet pen button. /// public class TabletPenButtonReleaseEvent : TabletPenButtonEvent { public TabletPenButtonReleaseEvent(InputState state, TabletPenButton button) : base(state, button) { } } }