mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-16 22:37:08 +01:00
12 lines
200 B
C#
12 lines
200 B
C#
namespace Ryujinx.Core.OsHle
|
|
{
|
|
class FileDesc
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
public FileDesc(string Name)
|
|
{
|
|
this.Name = Name;
|
|
}
|
|
}
|
|
} |