1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-12-02 23:22:08 +00:00
Ryujinx/Ryujinx.HLE/HOS/Services/Nv/NvFd.cs

12 lines
196 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Nv
2018-02-04 23:08:20 +00:00
{
class NvFd
2018-02-04 23:08:20 +00:00
{
public string Name { get; private set; }
2018-12-01 20:01:59 +00:00
public NvFd(string name)
2018-02-04 23:08:20 +00:00
{
2018-12-01 20:24:37 +00:00
Name = name;
2018-02-04 23:08:20 +00:00
}
}
}