mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +01:00
16 lines
358 B
C#
16 lines
358 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DS4Windows
|
|||
|
{
|
|||
|
public abstract class OutputDevice
|
|||
|
{
|
|||
|
public abstract void ConvertandSendReport(DS4State state, int device);
|
|||
|
public abstract void Connect();
|
|||
|
public abstract void Disconnect();
|
|||
|
}
|
|||
|
}
|