2014-03-27 21:50:40 -04:00
|
|
|
|
using System;
|
2015-02-08 16:51:52 -05:00
|
|
|
|
|
|
|
|
|
namespace DS4Windows
|
2014-03-27 21:50:40 -04:00
|
|
|
|
{
|
|
|
|
|
interface ITouchpadBehaviour
|
|
|
|
|
{
|
2019-02-24 17:11:52 -06: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-27 21:50:40 -04:00
|
|
|
|
}
|
|
|
|
|
}
|