2014-03-28 02:50:40 +01:00
|
|
|
|
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);
|
2014-03-29 06:29:08 +01:00
|
|
|
|
void touchUnchanged(object sender, EventArgs unused);
|
2014-03-28 02:50:40 +01:00
|
|
|
|
}
|
|
|
|
|
}
|