mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-29 05:57:43 +02:00
19 lines
511 B
C#
19 lines
511 B
C#
using LibHac;
|
|
|
|
namespace Ryujinx.Horizon
|
|
{
|
|
public struct HorizonOptions
|
|
{
|
|
public bool IgnoreMissingServices { get; }
|
|
public bool ThrowOnInvalidCommandIds { get; }
|
|
|
|
public HorizonClient BcatClient { get; }
|
|
|
|
public HorizonOptions(bool ignoreMissingServices, HorizonClient bcatClient)
|
|
{
|
|
IgnoreMissingServices = ignoreMissingServices;
|
|
ThrowOnInvalidCommandIds = true;
|
|
BcatClient = bcatClient;
|
|
}
|
|
}
|
|
}
|