mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-03-27 00:04:41 +01:00
* Make controllers modular, support changing controller type * return readable events * signal hid events * fix style
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)
|
|
}
|
|
} |