2020-03-07 03:40:06 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Ui
|
|
|
|
|
{
|
|
|
|
|
public class StatusUpdatedEventArgs : EventArgs
|
|
|
|
|
{
|
|
|
|
|
public bool VSyncEnabled;
|
2021-12-23 17:33:56 +01:00
|
|
|
|
public float Volume;
|
2020-05-05 00:10:01 +02:00
|
|
|
|
public string DockedMode;
|
2020-12-16 03:19:07 +01:00
|
|
|
|
public string AspectRatio;
|
2020-03-07 03:40:06 +01:00
|
|
|
|
public string GameStatus;
|
2020-10-13 22:54:42 +02:00
|
|
|
|
public string FifoStatus;
|
2020-03-24 22:54:09 +01:00
|
|
|
|
public string GpuName;
|
2020-03-07 03:40:06 +01:00
|
|
|
|
|
2021-12-23 17:33:56 +01:00
|
|
|
|
public StatusUpdatedEventArgs(bool vSyncEnabled, float volume, string dockedMode, string aspectRatio, string gameStatus, string fifoStatus, string gpuName)
|
2020-03-07 03:40:06 +01:00
|
|
|
|
{
|
|
|
|
|
VSyncEnabled = vSyncEnabled;
|
2021-12-23 17:33:56 +01:00
|
|
|
|
Volume = volume;
|
2020-05-05 00:10:01 +02:00
|
|
|
|
DockedMode = dockedMode;
|
2020-12-16 03:19:07 +01:00
|
|
|
|
AspectRatio = aspectRatio;
|
2020-03-07 03:40:06 +01:00
|
|
|
|
GameStatus = gameStatus;
|
2020-10-13 22:54:42 +02:00
|
|
|
|
FifoStatus = fifoStatus;
|
2020-03-24 22:54:09 +01:00
|
|
|
|
GpuName = gpuName;
|
2020-03-07 03:40:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-01-08 09:14:13 +01:00
|
|
|
|
}
|