1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-18 05:40:04 -06:00
ryujinx/Ryujinx.HLE/Input/IHidDevice.cs

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