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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|