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