mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +01:00
16 lines
546 B
C#
16 lines
546 B
C#
using System;
|
|
|
|
namespace DS4Windows
|
|
{
|
|
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);
|
|
void sixaxisMoved(object sender, SixAxisEventArgs unused);
|
|
void touchUnchanged(object sender, EventArgs unused);
|
|
}
|
|
}
|