mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-28 19:54:29 +01:00
18 lines
445 B
C#
18 lines
445 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.Ui
|
|||
|
{
|
|||
|
public class StatusUpdatedEventArgs : EventArgs
|
|||
|
{
|
|||
|
public bool VSyncEnabled;
|
|||
|
public string HostStatus;
|
|||
|
public string GameStatus;
|
|||
|
|
|||
|
public StatusUpdatedEventArgs(bool vSyncEnabled, string hostStatus, string gameStatus)
|
|||
|
{
|
|||
|
VSyncEnabled = vSyncEnabled;
|
|||
|
HostStatus = hostStatus;
|
|||
|
GameStatus = gameStatus;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|