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
4#if NET5_0
5using OpenTabletDriver.Plugin.Output;
6using OpenTabletDriver.Plugin.Platform.Pointer;
7
8namespace osu.Framework.Input.Handlers.Tablet
9{
10 public class AbsoluteTabletMode : AbsoluteOutputMode
11 {
12 public AbsoluteTabletMode(IAbsolutePointer pointer)
13 {
14 Pointer = pointer;
15 }
16
17 public override IAbsolutePointer Pointer { get; }
18 }
19}
20#endif