mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-22 18:15:11 +00: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;
|
|
}
|
|
}
|
|
} |