2023-12-04 14:17:13 +01:00
|
|
|
using System;
|
2021-07-06 22:08:44 +02:00
|
|
|
|
|
|
|
|
namespace Ryujinx.Headless.SDL2
|
|
|
|
|
{
|
2024-10-14 21:48:21 -05:00
|
|
|
class StatusUpdatedEventArgs(
|
|
|
|
|
bool vSyncEnabled,
|
|
|
|
|
string dockedMode,
|
|
|
|
|
string aspectRatio,
|
|
|
|
|
string gameStatus,
|
|
|
|
|
string fifoStatus,
|
|
|
|
|
string gpuName)
|
|
|
|
|
: EventArgs
|
2021-07-06 22:08:44 +02:00
|
|
|
{
|
2024-10-14 21:48:21 -05:00
|
|
|
public bool VSyncEnabled = vSyncEnabled;
|
|
|
|
|
public string DockedMode = dockedMode;
|
|
|
|
|
public string AspectRatio = aspectRatio;
|
|
|
|
|
public string GameStatus = gameStatus;
|
|
|
|
|
public string FifoStatus = fifoStatus;
|
|
|
|
|
public string GpuName = gpuName;
|
2021-07-06 22:08:44 +02:00
|
|
|
}
|
|
|
|
|
}
|