2014-03-28 02:50:40 +01:00
|
|
|
|
using System;
|
2015-02-08 22:51:52 +01:00
|
|
|
|
|
|
|
|
|
namespace DS4Windows
|
2014-03-28 02:50:40 +01:00
|
|
|
|
{
|
|
|
|
|
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);
|
2014-03-28 02:50:40 +01:00
|
|
|
|
}
|
|
|
|
|
}
|