mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-01 21:06:25 +02:00
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; }
|
|
}
|
|
}
|