mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-14 01:52:34 +01:00
15 lines
369 B
C#
15 lines
369 B
C#
namespace Ryujinx.Horizon
|
|
{
|
|
public struct HorizonOptions
|
|
{
|
|
public bool IgnoreMissingServices { get; }
|
|
public bool ThrowOnInvalidCommandIds { get; }
|
|
|
|
public HorizonOptions(bool ignoreMissingServices)
|
|
{
|
|
IgnoreMissingServices = ignoreMissingServices;
|
|
ThrowOnInvalidCommandIds = true;
|
|
}
|
|
}
|
|
}
|