mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-09 04:09:12 +00:00
21 lines
339 B
C#
21 lines
339 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Ryujinx.HLE.Input
|
|
{
|
|
public enum HidHostDevice
|
|
{
|
|
None,
|
|
Keyboard,
|
|
GamePad0,
|
|
GamePad1,
|
|
GamePad2,
|
|
GamePad3,
|
|
GamePad4,
|
|
GamePad5,
|
|
GamePad6,
|
|
GamePad7,
|
|
GamePad8
|
|
};
|
|
}
|