aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Input/IHidDevice.cs
blob: 0b07e767fc66a37016eb21c59ec76918e4cb863a (plain) (blame)
1
2
3
4
5
6
7
8
namespace Ryujinx.HLE.Input
{
    interface IHidDevice
    {
        long Offset    { get; }
        bool Connected { get; }
    }
}