2023-01-04 23:15:45 +01:00
|
|
|
namespace Ryujinx.Horizon
|
|
|
|
{
|
|
|
|
public struct HorizonOptions
|
|
|
|
{
|
2023-01-08 13:13:39 +01:00
|
|
|
public bool IgnoreMissingServices { get; }
|
|
|
|
public bool ThrowOnInvalidCommandIds { get; }
|
2023-01-04 23:15:45 +01:00
|
|
|
|
|
|
|
public HorizonOptions(bool ignoreMissingServices)
|
|
|
|
{
|
2023-01-08 13:13:39 +01:00
|
|
|
IgnoreMissingServices = ignoreMissingServices;
|
|
|
|
ThrowOnInvalidCommandIds = true;
|
2023-01-04 23:15:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|