aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Input/IHidDevice.cs
blob: cc67b01a528375fe96ee19ae23b267b18daa3261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;
using System.Text;

namespace Ryujinx.HLE.Input
{
    interface IHidDevice
    {
        long Offset    { get; }
        bool Connected { get; }
    }
}