mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-24 15:27:42 +02:00

* 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; }
|
|
}
|
|
}
|