mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:38:33 +00:00
3615a70cae
This reverts commit 85dbb9559a
.
12 lines
207 B
C#
12 lines
207 B
C#
namespace Ryujinx.HLE.HOS.Services.Vi
|
|
{
|
|
class Display
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
public Display(string Name)
|
|
{
|
|
this.Name = Name;
|
|
}
|
|
}
|
|
} |