12 lines
No EOL
204 B
C#
12 lines
No EOL
204 B
C#
namespace Ryujinx.Core.OsHle.Services.Nv
|
|
{
|
|
class NvFd
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
public NvFd(string Name)
|
|
{
|
|
this.Name = Name;
|
|
}
|
|
}
|
|
} |