forked from Mirror/Ryujinx
264438ff19
This reverts commit 4250732353
.
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;
|
|
}
|
|
}
|
|
}
|