mirror of
https://git.ryujinx.app/archive/ryujinx-mirror.git
synced 2025-10-05 02:12:59 +00:00
16 lines
354 B
C#
16 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;
|
|
}
|
|
}
|
|
}
|