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