mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 09:19:18 +01:00
16 lines
580 B
C#
16 lines
580 B
C#
using System;
|
|
|
|
namespace DS4Windows
|
|
{
|
|
interface ITouchpadBehaviour
|
|
{
|
|
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);
|
|
}
|
|
}
|