mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-12 10:37:06 +00:00
12 lines
No EOL
200 B
C#
12 lines
No EOL
200 B
C#
namespace Ryujinx.Core.OsHle
|
|
{
|
|
class FileDesc
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
public FileDesc(string Name)
|
|
{
|
|
this.Name = Name;
|
|
}
|
|
}
|
|
} |