aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx/UI/Models/StatusInitEventArgs.cs
blob: 4b08737e965378fa4ee107c3ab92c0fac08a710c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
        }
    }
}