Ryujinx/Ryujinx.Graphics.GAL/HardwareInfo.cs

19 lines
382 B
C#
Raw Normal View History

2021-08-12 06:09:56 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Ryujinx.Graphics.GAL
{
public struct HardwareInfo
{
public string GpuVendor { get; }
public string GpuModel { get; }
public HardwareInfo(string gpuVendor, string gpuModel)
{
GpuVendor = gpuVendor;
GpuModel = gpuModel;
}
}
}