Move ButtonValueType to seperate file

This commit is contained in:
Isaac Marovitz 2024-02-23 20:33:24 -05:00 committed by Isaac Marovitz
parent 584fc555fe
commit 03083e72be
2 changed files with 9 additions and 2 deletions

View file

@ -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;

View file

@ -0,0 +1,9 @@
namespace Ryujinx.Input
{
public enum ButtonValueType
{
Key,
GamepadButtonInputId,
StickId
}
}