This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
ryubing/Ryujinx.HLE/Input/HidControllerConnState.cs

11 lines
198 B
C#

using System;
namespace Ryujinx.HLE.Input
{
[Flags]
public enum HidControllerConnState
{
ControllerStateConnected = (1 << 0),
ControllerStateWired = (1 << 1)
}
}