1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-16 12:50:04 -06:00
ryujinx/Ryujinx.HLE/HOS/Services/Nv/NvFd.cs

12 lines
201 B
C#

namespace Ryujinx.HLE.HOS.Services.Nv
{
class NvFd
{
public string Name { get; private set; }
public NvFd(string Name)
{
this.Name = Name;
}
}
}