Ryujinx/Ryujinx.HLE/HOS/Services/Nv/NvFd.cs

12 lines
183 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Nv
2018-02-05 00:08:20 +01:00
{
class NvFd
2018-02-05 00:08:20 +01:00
{
public string Name { get; }
2018-02-05 00:08:20 +01:00
public NvFd(string name)
2018-02-05 00:08:20 +01:00
{
Name = name;
2018-02-05 00:08:20 +01:00
}
}
}