2020-03-07 02:40:06 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Ui
|
|
|
|
|
{
|
|
|
|
|
public class StatusUpdatedEventArgs : EventArgs
|
|
|
|
|
{
|
|
|
|
|
public bool VSyncEnabled;
|
2020-05-04 22:10:01 +00:00
|
|
|
|
public string DockedMode;
|
2020-03-07 02:40:06 +00:00
|
|
|
|
public string HostStatus;
|
|
|
|
|
public string GameStatus;
|
2020-03-24 21:54:09 +00:00
|
|
|
|
public string GpuName;
|
2020-03-07 02:40:06 +00:00
|
|
|
|
|
2020-05-04 22:10:01 +00:00
|
|
|
|
public StatusUpdatedEventArgs(bool vSyncEnabled, string dockedMode, string hostStatus, string gameStatus, string gpuName)
|
2020-03-07 02:40:06 +00:00
|
|
|
|
{
|
|
|
|
|
VSyncEnabled = vSyncEnabled;
|
2020-05-04 22:10:01 +00:00
|
|
|
|
DockedMode = dockedMode;
|
2020-03-07 02:40:06 +00:00
|
|
|
|
HostStatus = hostStatus;
|
|
|
|
|
GameStatus = gameStatus;
|
2020-03-24 21:54:09 +00:00
|
|
|
|
GpuName = gpuName;
|
2020-03-07 02:40:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-04 22:10:01 +00:00
|
|
|
|
}
|