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
4using osu.Framework.Input.States;
5using osuTK;
6
7namespace osu.Framework.Input.Events
8{
9 public class TouchUpEvent : TouchEvent
10 {
11 public TouchUpEvent(InputState state, Touch touch, Vector2? screenSpaceTouchDownPosition)
12 : base(state, touch, screenSpaceTouchDownPosition)
13 {
14 }
15 }
16}