mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:58:35 +00:00
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;
|
||
|
}
|
||
|
}
|
||
|
}
|