mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-30 10:07:42 +02: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;
|
|
}
|
|
}
|
|
}
|