mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-11 07:32:01 +00:00
12 lines
No EOL
207 B
C#
12 lines
No EOL
207 B
C#
namespace Ryujinx.HLE.HOS.Services.Vi
|
|
{
|
|
class Display
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
public Display(string name)
|
|
{
|
|
this.Name = name;
|
|
}
|
|
}
|
|
} |