mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
19 lines
382 B
C#
19 lines
382 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|