mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-28 17:37:11 +02: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;
|
|
}
|
|
}
|
|
}
|