mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-10 08:31:06 +00:00
As per the remark XMLdoc on the type: Get rid of this converter if dotnet supports similar functionality out of the box.
15 lines
282 B
C#
15 lines
282 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration.Hid.Controller
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter<StickInputId>))]
|
|
public enum StickInputId : byte
|
|
{
|
|
Unbound,
|
|
Left,
|
|
Right,
|
|
|
|
Count,
|
|
}
|
|
}
|