mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-22 17:56:59 +01:00
dc02ac08ca
* Make controllers modular, support changing controller type * return readable events * signal hid events * fix style
12 lines
204 B
C#
12 lines
204 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Ryujinx.HLE.Input
|
|
{
|
|
interface IHidDevice
|
|
{
|
|
long Offset { get; }
|
|
bool Connected { get; }
|
|
}
|
|
}
|