mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-02-09 15:58:34 +01:00
20 lines
511 B
C#
20 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;
|
|
}
|
|
}
|
|
}
|