mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-01 02:30:08 -06:00
12 lines
209 B
C#
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;
|
|
}
|
|
}
|
|
} |