mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-07 00:21:08 -06:00
![emmauss](/assets/img/avatar_default.png)
* Make controllers modular, support changing controller type * return readable events * signal hid events * fix style
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)
|
|
}
|
|
} |