13 lines
264 B
C#
13 lines
264 B
C#
|
namespace Ryujinx.Horizon
|
||
|
{
|
||
|
public struct HorizonOptions
|
||
|
{
|
||
|
public bool IgnoreMissingServices { get; }
|
||
|
|
||
|
public HorizonOptions(bool ignoreMissingServices)
|
||
|
{
|
||
|
IgnoreMissingServices = ignoreMissingServices;
|
||
|
}
|
||
|
}
|
||
|
}
|