Launch the Ryujinx.exe, first argument --no-gui or nogui, and the rest of the arguments should be your normal headless script. You can include the new option --use-main-config which will provide any arguments that you don't, filled in from your main config made by the UI. Input config is not inherited at this time.
22 lines
547 B
C#
22 lines
547 B
C#
using System;
|
|
|
|
namespace Ryujinx.Headless
|
|
{
|
|
class StatusUpdatedEventArgs(
|
|
string vSyncMode,
|
|
string dockedMode,
|
|
string aspectRatio,
|
|
string gameStatus,
|
|
string fifoStatus,
|
|
string gpuName)
|
|
: EventArgs
|
|
{
|
|
public string VSyncMode = vSyncMode;
|
|
public string DockedMode = dockedMode;
|
|
public string AspectRatio = aspectRatio;
|
|
public string GameStatus = gameStatus;
|
|
public string FifoStatus = fifoStatus;
|
|
public string GpuName = gpuName;
|
|
}
|
|
}
|