mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-27 17:40:50 +01:00
dc02ac08ca
* Make controllers modular, support changing controller type * return readable events * signal hid events * fix style
10 lines
156 B
C#
10 lines
156 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Input
|
|
{
|
|
[Flags]
|
|
public enum HidControllerColorDesc
|
|
{
|
|
ColorDesc_ColorsNonexistent = (1 << 1)
|
|
}
|
|
} |