1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-21 06:24:10 +01:00
Ryujinx/Ryujinx.HLE/HOS/Services/Nv/NvFd.cs

12 lines
201 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-02-04 23:08:20 +00:00
public NvFd(string Name)
2018-02-04 23:08:20 +00:00
{
this.Name = Name;
2018-02-04 23:08:20 +00:00
}
}
}