mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 17:29:18 +01:00
18 lines
568 B
C#
18 lines
568 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using DS4Library;
|
|
namespace DS4Control
|
|
{
|
|
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 touchUnchanged(object sender, EventArgs unused);
|
|
}
|
|
}
|