mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-18 00:12:41 +00:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.Horizon/HorizonOptions.cs
Normal file
14
src/Ryujinx.Horizon/HorizonOptions.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Ryujinx.Horizon
|
||||
{
|
||||
public struct HorizonOptions
|
||||
{
|
||||
public bool IgnoreMissingServices { get; }
|
||||
public bool ThrowOnInvalidCommandIds { get; }
|
||||
|
||||
public HorizonOptions(bool ignoreMissingServices)
|
||||
{
|
||||
IgnoreMissingServices = ignoreMissingServices;
|
||||
ThrowOnInvalidCommandIds = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user