mirror of
https://github.com/vale981/VoiDPlugins
synced 2025-03-06 01:31:39 -05:00
14 lines
485 B
C#
14 lines
485 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
|
||
|
{
|
||
|
private readonly IAbsolutePointer TouchPointer = new TouchPointerHandler();
|
||
|
public override IAbsolutePointer Pointer => TouchPointer;
|
||
|
}
|
||
|
}
|