mirror of
https://github.com/vale981/VoiDPlugins
synced 2025-03-05 17:21:38 -05:00
13 lines
No EOL
427 B
C#
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();
|
|
}
|
|
} |