mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-02-23 19:45:35 +00:00
12 lines
No EOL
196 B
C#
12 lines
No EOL
196 B
C#
namespace Ryujinx.HLE.HOS.Services.Nv
|
|
{
|
|
class NvFd
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
public NvFd(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
} |