VoiDPlugins/OutputMode/TouchEmu/TouchOutputMode.cs
2021-04-21 21:59:52 +08:00

13 lines
No EOL
427 B
C#

using OpenTabletDriver.Plugin;
using OpenTabletDriver.Plugin.Attributes;
using OpenTabletDriver.Plugin.Output;
using OpenTabletDriver.Plugin.Platform.Pointer;
namespace VoiDPlugins.OutputMode
{
[PluginName("Touch Emu"), SupportedPlatform(PluginPlatform.Windows)]
public class TouchOutputMode : AbsoluteOutputMode
{
public override IAbsolutePointer Pointer { get; set; } = new TouchPointerHandler();
}
}