aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Hid/HidDevices/BaseDevice.cs
blob: e8bf628a219ca2c4d8f0502c98359350af2fcd2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using static Ryujinx.HLE.HOS.Services.Hid.Hid;

namespace Ryujinx.HLE.HOS.Services.Hid
{
    public abstract class BaseDevice
    {
        protected readonly Switch _device;
        public bool Active;

        public BaseDevice(Switch device, bool active)
        {
            _device = device;
            Active = active;
        }
    }
}