mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-10 12:49:13 +00:00
Move ButtonValueType to seperate file
This commit is contained in:
parent
584fc555fe
commit
03083e72be
2 changed files with 9 additions and 2 deletions
|
@ -2,8 +2,6 @@ using System;
|
||||||
|
|
||||||
namespace Ryujinx.Input
|
namespace Ryujinx.Input
|
||||||
{
|
{
|
||||||
public enum ButtonValueType { Key, GamepadButtonInputId, StickId }
|
|
||||||
|
|
||||||
public readonly struct ButtonValue
|
public readonly struct ButtonValue
|
||||||
{
|
{
|
||||||
public readonly ButtonValueType Type;
|
public readonly ButtonValueType Type;
|
||||||
|
|
9
src/Ryujinx.Input/ButtonValueType.cs
Normal file
9
src/Ryujinx.Input/ButtonValueType.cs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
namespace Ryujinx.Input
|
||||||
|
{
|
||||||
|
public enum ButtonValueType
|
||||||
|
{
|
||||||
|
Key,
|
||||||
|
GamepadButtonInputId,
|
||||||
|
StickId
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue