mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-20 11:12:03 +00:00
14 lines
504 B
C#
14 lines
504 B
C#
|
using Ryujinx.Common.Configuration.Hid.Controller;
|
|||
|
using Ryujinx.Common.Configuration.Hid.Keyboard;
|
|||
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace Ryujinx.Common.Configuration.Hid
|
|||
|
{
|
|||
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
|||
|
[JsonSerializable(typeof(InputConfig))]
|
|||
|
[JsonSerializable(typeof(StandardKeyboardInputConfig))]
|
|||
|
[JsonSerializable(typeof(StandardControllerInputConfig))]
|
|||
|
public partial class InputConfigJsonSerializerContext : JsonSerializerContext
|
|||
|
{
|
|||
|
}
|
|||
|
}
|