mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 17:49:57 -06:00
17 lines
354 B
C#
17 lines
354 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ava.UI.Models
|
|
{
|
|
internal class StatusInitEventArgs : EventArgs
|
|
{
|
|
public string GpuBackend { get; }
|
|
public string GpuName { get; }
|
|
|
|
public StatusInitEventArgs(string gpuBackend, string gpuName)
|
|
{
|
|
GpuBackend = gpuBackend;
|
|
GpuName = gpuName;
|
|
}
|
|
}
|
|
}
|