mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-04-20 15:42:02 +00:00
14 lines
369 B
C#
14 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;
|
|
}
|
|
}
|
|
}
|