1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-17 05:10:04 -06:00
ryujinx/Ryujinx.HLE/Input/HidControllerColorDesc.cs

10 lines
155 B
C#
Raw Normal View History

using System;
namespace Ryujinx.HLE.Input
{
[Flags]
public enum HidControllerColorDesc
{
ColorDescColorsNonexistent = (1 << 1)
}
}