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
|
|
|
|
|
{
|
|
|
|
|
void touchesBegan(object sender, TouchpadEventArgs arg);
|
|
|
|
|
void touchesMoved(object sender, TouchpadEventArgs arg);
|
|
|
|
|
void touchButtonUp(object sender, TouchpadEventArgs arg);
|
|
|
|
|
void touchButtonDown(object sender, TouchpadEventArgs arg);
|
|
|
|
|
void touchesEnded(object sender, TouchpadEventArgs arg);
|
2015-11-28 00:47:26 -05:00
|
|
|
|
void sixaxisMoved(object sender, SixAxisEventArgs unused);
|
2014-03-29 01:29:08 -04:00
|
|
|
|
void touchUnchanged(object sender, EventArgs unused);
|
2014-03-27 21:50:40 -04:00
|
|
|
|
}
|
|
|
|
|
}
|