mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-02-17 23:15:34 +00:00
12 lines
No EOL
209 B
C#
12 lines
No EOL
209 B
C#
namespace Ryujinx.HLE.OsHle.Services.Vi
|
|
{
|
|
class Display
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
public Display(string Name)
|
|
{
|
|
this.Name = Name;
|
|
}
|
|
}
|
|
} |