0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/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
}
}
}