0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/Ryujinx.HLE/HOS/Services/Hid/Types/Npad/NpadIdType.cs
2021-04-25 02:50:00 +02:00

16 lines
312 B
C#

namespace Ryujinx.HLE.HOS.Services.Hid
{
public enum NpadIdType : int
{
Player1 = 0,
Player2 = 1,
Player3 = 2,
Player4 = 3,
Player5 = 4,
Player6 = 5,
Player7 = 6,
Player8 = 7,
Unknown = 16,
Handheld = 32
}
}