Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.Graphics.GAL/HardwareInfo.cs
Normal file
14
src/Ryujinx.Graphics.GAL/HardwareInfo.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Ryujinx.Graphics.GAL
|
||||
{
|
||||
public readonly struct HardwareInfo
|
||||
{
|
||||
public string GpuVendor { get; }
|
||||
public string GpuModel { get; }
|
||||
|
||||
public HardwareInfo(string gpuVendor, string gpuModel)
|
||||
{
|
||||
GpuVendor = gpuVendor;
|
||||
GpuModel = gpuModel;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user