1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-17 05:10:04 -06:00
ryujinx/Ryujinx.HLE/OsHle/Services/Vi/Display.cs

12 lines
209 B
C#

namespace Ryujinx.HLE.OsHle.Services.Vi
{
class Display
{
public string Name { get; private set; }
public Display(string Name)
{
this.Name = Name;
}
}
}