cemu-DS4Windows/DS4Windows/DS4Control/ITouchpadBehaviour.cs

19 lines
618 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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);
}
}