mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-27 14:22:28 +00:00
11 lines
No EOL
198 B
C#
11 lines
No EOL
198 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Input
|
|
{
|
|
[Flags]
|
|
public enum HidControllerConnState
|
|
{
|
|
ControllerStateConnected = (1 << 0),
|
|
ControllerStateWired = (1 << 1)
|
|
}
|
|
} |