mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 17:29:18 +01:00
df43fd0d74
I kinda just felt like doing it :P wanted to test myself, trying to make a cleaner UI
31 lines
835 B
C#
31 lines
835 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using DS4Library;
|
|
|
|
namespace DS4Control
|
|
{
|
|
class TouchpadDisabled : ITouchpadBehaviour
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return "Disabled";
|
|
}
|
|
|
|
public static readonly TouchpadDisabled singleton = new TouchpadDisabled();
|
|
|
|
public void touchesMoved(object sender, TouchpadEventArgs arg) { }
|
|
|
|
public void touchesBegan(object sender, TouchpadEventArgs arg) { }
|
|
|
|
public void touchesEnded(object sender, TouchpadEventArgs arg) { }
|
|
|
|
public void touchButtonUp(object sender, TouchpadEventArgs arg) { }
|
|
|
|
public void touchButtonDown(object sender, TouchpadEventArgs arg) { }
|
|
|
|
public void untouched(object sender, TouchpadEventArgs nullUnused) { }
|
|
}
|
|
}
|