mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-20 10:00:19 +00:00
26 lines
No EOL
842 B
C#
26 lines
No EOL
842 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ava.Ui.Models
|
|
{
|
|
internal class StatusUpdatedEventArgs : EventArgs
|
|
{
|
|
public bool VSyncEnabled { get; }
|
|
public float Volume { get; }
|
|
public string AspectRatio { get; }
|
|
public string DockedMode { get; }
|
|
public string FifoStatus { get; }
|
|
public string GameStatus { get; }
|
|
public string GpuName { get; }
|
|
|
|
public StatusUpdatedEventArgs(bool vSyncEnabled, float volume, string dockedMode, string aspectRatio, string gameStatus, string fifoStatus, string gpuName)
|
|
{
|
|
VSyncEnabled = vSyncEnabled;
|
|
Volume = volume;
|
|
DockedMode = dockedMode;
|
|
AspectRatio = aspectRatio;
|
|
GameStatus = gameStatus;
|
|
FifoStatus = fifoStatus;
|
|
GpuName = gpuName;
|
|
}
|
|
}
|
|
} |