1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-16 04:40:05 -06:00
ryujinx/Ryujinx/OsHle/FileDesc.cs

12 lines
195 B
C#
Raw Normal View History

2018-02-04 17:08:20 -06:00
namespace Ryujinx.OsHle
{
class FileDesc
{
public string Name { get; private set; }
public FileDesc(string Name)
{
this.Name = Name;
}
}
}