mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:28:38 +00:00
11 lines
202 B
C#
11 lines
202 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Input
|
|
{
|
|
[Flags]
|
|
public enum HidControllerConnState
|
|
{
|
|
Controller_State_Connected = (1 << 0),
|
|
Controller_State_Wired = (1 << 1)
|
|
}
|
|
} |