1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-12-03 19:52:01 +00:00
Ryujinx/Ryujinx.HLE/HOS/Services/Nv/NvFd.cs
2018-12-01 14:03:56 -06:00

12 lines
No EOL
201 B
C#

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