mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-23 11:23:14 +02:00
12 lines
No EOL
195 B
C#
12 lines
No EOL
195 B
C#
namespace Ryujinx.OsHle
|
|
{
|
|
class FileDesc
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
public FileDesc(string Name)
|
|
{
|
|
this.Name = Name;
|
|
}
|
|
}
|
|
} |