mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-08 20:02:39 +00:00
26 lines
585 B
C#
26 lines
585 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Ryujinx.HLE.Input
|
|
{
|
|
public class HidEmulatedDevices
|
|
{
|
|
public struct EmulatedDevices
|
|
{
|
|
public int Handheld;
|
|
public int Player1;
|
|
public int Player2;
|
|
public int Player3;
|
|
public int Player4;
|
|
public int Player5;
|
|
public int Player6;
|
|
public int Player7;
|
|
public int Player8;
|
|
public int PlayerUnknown;
|
|
};
|
|
|
|
public static EmulatedDevices Devices;
|
|
}
|
|
}
|