cemu-DS4Windows/DS4Windows/DS4Control/ITouchpadBehaviour.cs

16 lines
580 B
C#
Raw Normal View History

using System;
namespace DS4Windows
{
interface ITouchpadBehaviour
{
2019-02-25 00:11:52 +01:00
void touchesBegan(DS4Touchpad sender, TouchpadEventArgs arg);
void touchesMoved(DS4Touchpad sender, TouchpadEventArgs arg);
void touchButtonUp(DS4Touchpad sender, TouchpadEventArgs arg);
void touchButtonDown(DS4Touchpad sender, TouchpadEventArgs arg);
void touchesEnded(DS4Touchpad sender, TouchpadEventArgs arg);
void sixaxisMoved(DS4SixAxis sender, SixAxisEventArgs unused);
void touchUnchanged(DS4Touchpad sender, EventArgs unused);
}
}