mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-02 20:37:43 +02:00
11 lines
No EOL
202 B
C#
11 lines
No EOL
202 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Input
|
|
{
|
|
[Flags]
|
|
public enum HidControllerConnState
|
|
{
|
|
Controller_State_Connected = (1 << 0),
|
|
Controller_State_Wired = (1 << 1)
|
|
}
|
|
} |