A game framework written with osu! in mind.
at master 542 B view raw
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 4using osu.Framework.Input.States; 5 6namespace osu.Framework.Input.Events 7{ 8 /// <summary> 9 /// An event representing the press of a tablet pen button. 10 /// </summary> 11 public class TabletPenButtonPressEvent : TabletPenButtonEvent 12 { 13 public TabletPenButtonPressEvent(InputState state, TabletPenButton button) 14 : base(state, button) 15 { 16 } 17 } 18}